removeListener(CLICK_EVENT_ID, ClickEvent.class, listener);
}
- /**
- * Notifies the child components and windows that the root is attached to
- * the application.
- */
- @Override
- public void attach() {
- super.attach();
- for (Window w : windows) {
- w.attach();
- }
- }
-
- /**
- * Notifies the child components and windows that the root is detached from
- * the application.
- */
- @Override
- public void detach() {
- super.detach();
- for (Window w : windows) {
- w.detach();
- }
- }
-
@Override
public boolean isConnectorEnabled() {
// TODO How can a Root be invisible? What does it mean?