aboutsummaryrefslogtreecommitdiff
path: root/src/useTestAP/UseTestAp.java
blob: 2d7eab7b2c4d15ffdfad7c1633ca309caeda29fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
@org.projectlombok.testAp.ExampleAnnotation
//@lombok.experimental.Accessors(chain=true)
public class UseTestAp {
	@lombok.Setter @lombok.Getter String test;

	public void confirmGetTestExists() {
		System.out.println(getTest());
	}

	public UseTestAp returningSelf() {
		return this;
	}
}