Package org.cfeclipse.cfml.frameworks.dialogs

Examples of org.cfeclipse.cfml.frameworks.dialogs.CSAddBeanDialog.open()


        if(sel.getFirstElement() instanceof TreeParentNode){
          TreeParentNode selNode = (TreeParentNode)sel.getFirstElement();
          if(selNode.getType().equals(FrameworkManager.COLDSPRING)){
            CSAddBeanDialog addDialog = new  CSAddBeanDialog(viewer.getControl().getShell());
         
            if(addDialog.open() == IDialogConstants.OK_ID){
              String id = addDialog.getCfcName().getText();
              String className = addDialog.getCfcExtends().getText();
              System.out.println("Dialog says " + id + " " + className);
              Document document = selNode.getDocument();
              Element child = document.getRootElement();
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.