aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/GetterBoolean.java
blob: 49b52483dd064bc536da2f32a8c6515aa8fa6863 (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
class Getter {
	boolean foo;
	boolean isBar;
	boolean hasBaz;
	@java.lang.SuppressWarnings("all")
	@javax.annotation.Generated("lombok")
	public boolean isFoo() {
		return this.foo;
	}
	@java.lang.SuppressWarnings("all")
	@javax.annotation.Generated("lombok")
	public boolean isBar() {
		return this.isBar;
	}
	@java.lang.SuppressWarnings("all")
	@javax.annotation.Generated("lombok")
	public boolean isHasBaz() {
		return this.hasBaz;
	}
}
class MoreGetter {
	boolean foo;
	boolean hasFoo() {
		return true;
	}
	@java.lang.SuppressWarnings("all")
	@javax.annotation.Generated("lombok")
	public boolean isFoo() {
		return this.foo;
	}
}
class YetMoreGetter {
	boolean foo;
	boolean getFoo() {
		return true;
	}
}