Examples of IWindow


Examples of org.jamesii.gui.application.IWindow

   * @param dtde
   *          the forwarded {@link DropTargetDropEvent}
   * @return true if the drop succeeded, false else
   */
  protected boolean completeDrop(DropTargetDropEvent dtde) {
    IWindow window;
    try {
      window =
          (IWindow) dtde.getTransferable().getTransferData(
              WindowDataFlavor.getInstance());
      if (window != null) {
View Full Code Here

Examples of org.jamesii.gui.application.IWindow

    }

    this.windowManager = windowManager;
    windowManager.addWindowListener(this);

    IWindow window = windowManager.getActiveWindow();
    windowActivated(window);
  }
View Full Code Here

Examples of org.jamesii.gui.application.IWindow

  public void windowClosed(IWindow window) {
  }

  @Override
  public void windowDeactivated(IWindow window) {
    IWindow w = windowManager.getActiveWindow();
    setEnabled(w != null && w.isSaveable());
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.