//一个标准的JavaBean类
class ReflectPointt
{
private int x ;
private int y ;
public ReflectPointt(int x, int y) {
this.x = x;
this.y = y;
}
public int getX() {
return x;
}
public void setX(int x) {
this.x = x;
}
public int getY() {
return y;
}
public void setY(int y) {
this.y = y;
}
}作者: 杨文宇 时间: 2012-8-4 11:54
public class Test {
public static void main(String[] args) throws IntrospectionException {