aboutsummaryrefslogtreecommitdiff
path: root/test/delombok/resource/after/SetterAccessLevel.java
blob: d4e7ac23639cd24db9b55785bd8d1bdd3e26a291 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
class SetterAccessLevel {
	boolean isNone;
	boolean isPrivate;
	boolean isPackage;
	boolean isProtected;
	boolean isPublic;
	boolean value;
	private void setIsPrivate(final boolean isPrivate) {
		this.isPrivate = isPrivate;
	}
	void setIsPackage(final boolean isPackage) {
		this.isPackage = isPackage;
	}
	protected void setIsProtected(final boolean isProtected) {
		this.isProtected = isProtected;
	}
	public void setIsPublic(final boolean isPublic) {
		this.isPublic = isPublic;
	}
	public void setValue(final boolean value) {
		this.value = value;
	}
}