You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

BasicParseTest.aj 293B

123456789101112131415
  1. public aspect BasicParseTest {
  2. declare warning : set(* *) : "setting";
  3. declare @field: * foo : @MyAnnotation;
  4. declare @method: * foo() : @MyAnnotation;
  5. declare @constructor: Foo*.new(..) : @MyAnnotation;
  6. declare @type: org.xyz..* : @MyAnnotation;
  7. }
  8. @interface MyAnnotation {}