diff options
Diffstat (limited to 'test/transform/resource/after-delombok/SetterAccessLevel.java')
-rw-r--r-- | test/transform/resource/after-delombok/SetterAccessLevel.java | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/test/transform/resource/after-delombok/SetterAccessLevel.java b/test/transform/resource/after-delombok/SetterAccessLevel.java new file mode 100644 index 00000000..dce4cc2f --- /dev/null +++ b/test/transform/resource/after-delombok/SetterAccessLevel.java @@ -0,0 +1,28 @@ +class SetterAccessLevel { + boolean isNone; + boolean isPrivate; + boolean isPackage; + boolean isProtected; + boolean isPublic; + boolean value; + @java.lang.SuppressWarnings("all") + private void setIsPrivate(final boolean isPrivate) { + this.isPrivate = isPrivate; + } + @java.lang.SuppressWarnings("all") + void setIsPackage(final boolean isPackage) { + this.isPackage = isPackage; + } + @java.lang.SuppressWarnings("all") + protected void setIsProtected(final boolean isProtected) { + this.isProtected = isProtected; + } + @java.lang.SuppressWarnings("all") + public void setIsPublic(final boolean isPublic) { + this.isPublic = isPublic; + } + @java.lang.SuppressWarnings("all") + public void setValue(final boolean value) { + this.value = value; + } +}
\ No newline at end of file |