Package org.cfeclipse.cfml.dialogs

Examples of org.cfeclipse.cfml.dialogs.EditCustomTagDialog


    this.tag = this.dictionary.getTag(tag);
   
  }
 
  public void run(){
    EditCustomTagDialog ectd;
   
    if(this.tag != null){
      ectd = new EditCustomTagDialog(this.shell, this.tag);
      ectd.open();
    } else {
      ectd = new EditCustomTagDialog(this.shell);
      ectd.open();
    }
   
    if(ectd.open() == IDialogConstants.OK_ID){
      System.out.println("Clicked ok");
     
    }
   
   
View Full Code Here

TOP

Related Classes of org.cfeclipse.cfml.dialogs.EditCustomTagDialog

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.