blob: c8ac4bbd56e802e81d5c99f17a3cd9404b0e1f4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
@lombok.experimental.Accessors(makeFinal = true) class AccessorsMakeFinal1 {
private @lombok.Setter @lombok.experimental.Accessors(fluent = true) String test;
AccessorsMakeFinal1() {
super();
}
/**
* @return {@code this}.
*/
public final @java.lang.SuppressWarnings("all") AccessorsMakeFinal1 test(final String test) {
this.test = test;
return this;
}
}
|