blob: c992fd8569bf25282d63f53e652d696d65cf99c4 [file] [log] [blame]
class Test {
private int foo, bar;
public long getFoo() {
return foo;
}
public void setFoo(int foo) {
this.foo = foo;
}
public long getBar() {
return bar;
}
public void setBar(int bar) {
this.bar = bar;
}
}