Package org.cfeclipse.cfml.editors.actions

Examples of org.cfeclipse.cfml.editors.actions.EditCustomTagAction.run()


  protected void editTag(Object obj){
   
    if(obj instanceof TagItem){
      Tag tg = ((TagItem)obj).getTag();
      EditCustomTagAction ecta = new EditCustomTagAction(tg, this.getViewSite().getShell());
        ecta.run();
    }
    else if (obj == null){
      EditCustomTagAction ecta = new EditCustomTagAction(this.getViewSite().getShell());
      ecta.run();
    }
View Full Code Here


      EditCustomTagAction ecta = new EditCustomTagAction(tg, this.getViewSite().getShell());
        ecta.run();
    }
    else if (obj == null){
      EditCustomTagAction ecta = new EditCustomTagAction(this.getViewSite().getShell());
      ecta.run();
    }
   
  }

  /**
 
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.