public void add(UIComponent component) {
components.add(component);
if (component instanceof Bindable) {
Bindable b = (Bindable) component;
if (getRootPane().getChildIndex(b.getBindable()) == -1) {
b.bindTo(getRootPane());
}
}
}
public void add(Widget w){