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.

123456789101112131415
  1. package com.wibble.foo;
  2. import java.lang.annotation.*;
  3. aspect X {
  4. public int Class.i;
  5. public String Class.getMeSomething() {
  6. return "abc";
  7. }
  8. declare parents: Class implements java.io.Serializable;
  9. declare @type: Class: @Foobar;
  10. }
  11. @Retention(RetentionPolicy.RUNTIME)
  12. @interface Foobar {}