blob: e9e4f37044501a0adf672986b3a69b90a9c6d550 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
class Getter {
@lombok.Getter boolean foo;
@lombok.Getter boolean isBar;
@lombok.Getter boolean hasBaz;
public @java.lang.SuppressWarnings("all") boolean isFoo() {
return this.foo;
}
public @java.lang.SuppressWarnings("all") boolean isBar() {
return this.isBar;
}
public @java.lang.SuppressWarnings("all") boolean hasBaz() {
return this.hasBaz;
}
Getter() {
super();
}
}
class MoreGetter {
@lombok.Getter boolean foo;
MoreGetter() {
super();
}
boolean hasFoo() {
return true;
}
}
|