Package org.cfeclipse.frameworks.fusebox.dialogs

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

Related Classes of org.cfeclipse.frameworks.fusebox.dialogs.EditApplicationDialog

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.