Package org.cfeclipse.cfml.editors.actions

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


  private void initActions() {
    initMakeActions();
   
    action1 = new Action() {
      public void run() {
          GenericNewFileAction nfa = new GenericNewFileAction();
          nfa.setFilename("test.cfm");
          nfa.setContents("a test string");
          nfa.run();
         
        showMessage("Fusebox Files created");
      }
    };
    action1.setText("Add Fusebox Files");
View Full Code Here

TOP

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

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.