blob: a7dc2e2fec6a96ca2a82bd3be1ca9548b7f86c90 (
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
27
28
29
30
31
32
33
34
35
36
37
38
|
class Getter {
@lombok.Getter boolean foo;
@lombok.Getter boolean isBar;
@lombok.Getter boolean hasBaz;
Getter() {
super();
}
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 isHasBaz() {
return this.hasBaz;
}
}
class MoreGetter {
@lombok.Getter boolean foo;
MoreGetter() {
super();
}
boolean hasFoo() {
return true;
}
public @java.lang.SuppressWarnings("all") boolean isFoo() {
return this.foo;
}
}
class YetMoreGetter {
@lombok.Getter boolean foo;
YetMoreGetter() {
super();
}
boolean getFoo() {
return true;
}
}
|