aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-eclipse/GetterAccessLevel.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/transform/resource/after-eclipse/GetterAccessLevel.java')
-rw-r--r--test/transform/resource/after-eclipse/GetterAccessLevel.java43
1 files changed, 43 insertions, 0 deletions
diff --git a/test/transform/resource/after-eclipse/GetterAccessLevel.java b/test/transform/resource/after-eclipse/GetterAccessLevel.java
new file mode 100644
index 00000000..f0de95e7
--- /dev/null
+++ b/test/transform/resource/after-eclipse/GetterAccessLevel.java
@@ -0,0 +1,43 @@
+class GetterAccessLevel {
+ @lombok.Getter(lombok.AccessLevel.NONE) boolean isNone;
+ @lombok.Getter(lombok.AccessLevel.PRIVATE) boolean isPrivate;
+ @lombok.Getter(lombok.AccessLevel.PACKAGE) boolean isPackage;
+ @lombok.Getter(lombok.AccessLevel.PROTECTED) boolean isProtected;
+ @lombok.Getter(lombok.AccessLevel.PUBLIC) boolean isPublic;
+ @lombok.Getter(lombok.AccessLevel.NONE) String noneString;
+ @lombok.Getter(lombok.AccessLevel.PRIVATE) String privateString;
+ @lombok.Getter(lombok.AccessLevel.PACKAGE) String packageString;
+ @lombok.Getter(lombok.AccessLevel.PROTECTED) String protectedString;
+ @lombok.Getter(lombok.AccessLevel.PUBLIC) String publicString;
+ @lombok.Getter(value = lombok.AccessLevel.PUBLIC) String value;
+ private @java.lang.SuppressWarnings("all") boolean isPrivate() {
+ return this.isPrivate;
+ }
+ @java.lang.SuppressWarnings("all") boolean isPackage() {
+ return this.isPackage;
+ }
+ protected @java.lang.SuppressWarnings("all") boolean isProtected() {
+ return this.isProtected;
+ }
+ public @java.lang.SuppressWarnings("all") boolean isPublic() {
+ return this.isPublic;
+ }
+ private @java.lang.SuppressWarnings("all") String getPrivateString() {
+ return this.privateString;
+ }
+ @java.lang.SuppressWarnings("all") String getPackageString() {
+ return this.packageString;
+ }
+ protected @java.lang.SuppressWarnings("all") String getProtectedString() {
+ return this.protectedString;
+ }
+ public @java.lang.SuppressWarnings("all") String getPublicString() {
+ return this.publicString;
+ }
+ public @java.lang.SuppressWarnings("all") String getValue() {
+ return this.value;
+ }
+ GetterAccessLevel() {
+ super();
+ }
+}