summaryrefslogtreecommitdiffstats
path: root/tests/java5/annotations/aspectMembers/a/Foo.java
blob: 3fd621e2617a0bbb4e22bdb056454e99fdc02cc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package a;

/**
 * @author colyer
 *
 * TODO To change the template for this generated type comment go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
@TypeAnnotation
public class Foo {

	@FieldAnnotation int foo;
	
	@MethodAnnotation int getFoo() { return foo; }
	
	@MethodAnnotation int goo;
}