blob: 42b4319de807ec9060966080222ff8bb2d54f7fd (
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
|
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 isHasBaz() {
return this.hasBaz;
}
}
class MoreGetter {
boolean foo;
boolean hasFoo() {
return true;
}
@java.lang.SuppressWarnings("all")
public boolean isFoo() {
return this.foo;
}
}
class YetMoreGetter {
boolean foo;
boolean getFoo() {
return true;
}
}
|