aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-eclipse/SetterOnStatic.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/transform/resource/after-eclipse/SetterOnStatic.java')
-rw-r--r--test/transform/resource/after-eclipse/SetterOnStatic.java15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/transform/resource/after-eclipse/SetterOnStatic.java b/test/transform/resource/after-eclipse/SetterOnStatic.java
new file mode 100644
index 00000000..c1e4d3d1
--- /dev/null
+++ b/test/transform/resource/after-eclipse/SetterOnStatic.java
@@ -0,0 +1,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();
+ }
+}