blob: 359d46e24f5f995fda94f1b717a7edf28133cd09 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
class GetterPlain {
int i;
int foo;
@java.lang.SuppressWarnings("all")
public int getI() {
return this.i;
}
@java.lang.SuppressWarnings("all")
public int getFoo() {
return this.foo;
}
}
|