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.

AnnotatedClass.java 171B

123456789101112
  1. import p.SimpleAnnotation;
  2. @SimpleAnnotation(id=2)
  3. public class AnnotatedClass {
  4. @SimpleAnnotation(id=3)
  5. public void m1() { }
  6. @SimpleAnnotation(id=4)
  7. int i;
  8. }