• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package foo.bar;
2
3public @interface MyAnnotation {
4}
5
6public @interface MyAnnotation2 {
7}
8
9public @interface MyAnnotationWithFields {
10    int field();
11}
12
13@MyAnnotation
14class CA {
15
16}
17
18@MyAnnotation2
19class CB extends CA {
20
21}
22
23