blob: ec6d887e24842ee82cadb4eee46c2efd7f25ce59 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
class Getter {
static @lombok.Getter boolean foo;
static @lombok.Getter int bar;
<clinit>() {
}
Getter() {
super();
}
public static @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") @lombok.Generated boolean isFoo() {
return Getter.foo;
}
public static @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") @lombok.Generated int getBar() {
return Getter.bar;
}
}
|