Package net.pleso.framework.client.ui.interfaces

Examples of net.pleso.framework.client.ui.interfaces.IWindow


   * Hides all {@link IWindow} placed on deck applying
   * {@link IWindow#hideWindow()} method on each of them.
   */
  public void hideWindows() {
    while (this.deckPanel.getWidgetCount() > 0) {
      IWindow window = (IWindow) this.deckPanel.getWidget(this.deckPanel
          .getWidgetCount() - 1);
      window.hideWindow();
    }
  }
View Full Code Here

TOP

Related Classes of net.pleso.framework.client.ui.interfaces.IWindow

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.