aboutsummaryrefslogtreecommitdiff
path: root/test/delombok/resource/after/GetterAccessLevel.java
blob: e117b72a2bfa56fd1da242d088f4b29d9f04c6db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
class GetterAccessLevel {
	boolean isNone;
	boolean isPrivate;
	boolean isPackage;
	boolean isProtected;
	boolean isPublic;
	String noneString;
	String privateString;
	String packageString;
	String protectedString;
	String publicString;
	String value;
	private boolean isPrivate() {
		return isPrivate;
	}
	boolean isPackage() {
		return isPackage;
	}
	protected boolean isProtected() {
		return isProtected;
	}
	public boolean isPublic() {
		return isPublic;
	}
	private String getPrivateString() {
		return privateString;
	}
	String getPackageString() {
		return packageString;
	}
	protected String getProtectedString() {
		return protectedString;
	}
	public String getPublicString() {
		return publicString;
	}
	public String getValue() {
		return value;
	}
}