mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-31 22:17:45 +00:00
850c3eaf07
And as expected the tests shows that @Synchronized and @SneakyThrows are currently broken for eclipse but not for ecj.
44 lines
1.6 KiB
Java
44 lines
1.6 KiB
Java
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();
|
|
}
|
|
}
|