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