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.

SimpleInner.java 266B

12345678910111213141516171819202122
  1. public class SimpleInner {
  2. }
  3. enum Foo {
  4. }
  5. @interface WibbleAnno {
  6. }
  7. class Bar {
  8. public class Inner {}
  9. Runnable r = new Runnable() {
  10. public void run() {}
  11. };
  12. }
  13. interface I {
  14. }
  15. aspect X {
  16. before(): within(is(InnerType)) && staticinitialization(*) {}
  17. }