aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-eclipse/GetterOnStatic.java
blob: 538f25cb59dd3d298ac268a71662c21cbf36c56b (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>() {
  }
  public static @java.lang.SuppressWarnings("all") boolean isFoo() {
    return Getter.foo;
  }
  public static @java.lang.SuppressWarnings("all") int getBar() {
    return Getter.bar;
  }
  Getter() {
    super();
  }
}