Examples of EditApplicationDialog


Examples of org.cfeclipse.frameworks.fusebox.dialogs.EditApplicationDialog

   * @param obj
   */
  private void editApplication(Object obj) {
    //Show the edit FBXApplication dialog
    FBXApplication app = (FBXApplication)obj;
    EditApplicationDialog editApp = new EditApplicationDialog(applicationTree.getControl().getShell());
    editApp.setAppNameValue(app.getName());
   
    if(editApp.open() == IDialogConstants.OK_ID){
      app.setName(editApp.getAppNameValue());
      //now we have set it, refresh the tree?
      applicationTree.refresh();
    }
  }
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.