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.

Foo.java 316B

1234567891011121314151617
  1. package a;
  2. /**
  3. * @author colyer
  4. *
  5. * TODO To change the template for this generated type comment go to
  6. * Window - Preferences - Java - Code Style - Code Templates
  7. */
  8. @TypeAnnotation
  9. public class Foo {
  10. @FieldAnnotation int foo;
  11. @MethodAnnotation int getFoo() { return foo; }
  12. @MethodAnnotation int goo;
  13. }