blob: 3e9c4c5f87ca69527cb2a111b1d879a60e39b20a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
class AccessorsNoParams {
private String otherFieldWithOverride = "";
@java.lang.SuppressWarnings("all")
public String otherFieldWithOverride() {
return this.otherFieldWithOverride;
}
}
class AccessorsNoParams2 {
private boolean foo;
@java.lang.SuppressWarnings("all")
public void setFoo(final boolean foo) {
this.foo = foo;
}
}
|