Package org.cfeclipse.cfml.editors.indentstrategies

Examples of org.cfeclipse.cfml.editors.indentstrategies.TagIndentStrategy


    this.editor = editor;
    preferenceManager = new CFMLPreferenceManager();
    //this.undoManager = new CFEUndoManager(preferenceManager.maxUndoSteps());
   
    indentCFScriptStrategy = new CFScriptIndentStrategy(editor);
    this.indentTagStrategy = new TagIndentStrategy(editor);
   
    tabWidth = preferenceManager.tabWidth();
    boolean insertSpacesForTabs = preferenceManager.insertSpacesForTabs();
    indentCFScriptStrategy.setIndentString(tabWidth,insertSpacesForTabs);
    indentCFScriptStrategy.setTabIndentSingleLine(preferenceManager.tabIndentSingleLine());
View Full Code Here

TOP

Related Classes of org.cfeclipse.cfml.editors.indentstrategies.TagIndentStrategy

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.