blob: caf758c15633ff14a3c0aa02bd730f3a2d1b3d67 (
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;
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 hasBaz() {
return this.hasBaz;
}
}
class MoreGetter {
@lombok.Getter boolean foo;
MoreGetter() {
super();
}
boolean hasFoo() {
return true;
}
}
|