Package org.cfeclipse.cfml.editors.actions

Examples of org.cfeclipse.cfml.editors.actions.EditCustomTagAction


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

TOP

Related Classes of org.cfeclipse.cfml.editors.actions.EditCustomTagAction

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.