Package org.jamesii.gui.application

Examples of org.jamesii.gui.application.IWindow.saveAs()


  @Override
  public void execute() {
    IWindow window = windowManager.getActiveWindow();
    if (window != null && window.isSaveable()) {
      try {
        window.saveAs();
      } catch (Exception e) {
        SimSystem.report(e);
      }
    }
  }
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.