aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj/SetterOnStatic.java
blob: c1e4d3d160e383deda20fee0c642d2903e445bf8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class Setter {
  static @lombok.Setter boolean foo;
  static @lombok.Setter int bar;
  <clinit>() {
  }
  public static @java.lang.SuppressWarnings("all") void setFoo(final boolean foo) {
    Setter.foo = foo;
  }
  public static @java.lang.SuppressWarnings("all") void setBar(final int bar) {
    Setter.bar = bar;
  }
  Setter() {
    super();
  }
}