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.

SimpleAnnotation.java 190B

123456789101112131415161718
  1. public class SimpleAnnotation {
  2. }
  3. enum Foo {
  4. }
  5. @interface WibbleAnno {
  6. }
  7. class Bar {
  8. }
  9. interface I {
  10. }
  11. aspect X {
  12. before(): within(is(AnnotationType)) && staticinitialization(*) {}
  13. }