Datasets:
ArXiv:
License:
File size: 290 Bytes
c574d3a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
@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;
}
}
|