diff options
Diffstat (limited to 'src/useTestAP/UseTestAp.java')
-rw-r--r-- | src/useTestAP/UseTestAp.java | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/useTestAP/UseTestAp.java b/src/useTestAP/UseTestAp.java index 08ea11df..2d7eab7b 100644 --- a/src/useTestAP/UseTestAp.java +++ b/src/useTestAP/UseTestAp.java @@ -1,8 +1,13 @@ @org.projectlombok.testAp.ExampleAnnotation +//@lombok.experimental.Accessors(chain=true) public class UseTestAp { - @lombok.Getter String test; + @lombok.Setter @lombok.Getter String test; public void confirmGetTestExists() { System.out.println(getTest()); } + + public UseTestAp returningSelf() { + return this; + } } |