}
private void init(String name, Rectangle bounds) {
this.name = new StringModel(name, "name");
append(this.name);
x = new IntModel(bounds.x, "x");
append(x);
y = new IntModel(bounds.y, "y");
append(y);
w = new IntModel(bounds.width, "w");
append(w);
h = new IntModel(bounds.height, "h");
append(h);
}