blob: 63e20f4c6452fbd9e776ec47adb9bff4a0ebb074 [file] [log] [blame]
/**
* dumb test bean
*/
public class BeanA {
private int i,y;
public int getI() {
return i;
}
public void setI(int i) {
this.i = i;
}
}