Package org.cfeclipse.cfml.editors.contentassist

Examples of org.cfeclipse.cfml.editors.contentassist.CFMLTagAssist


   * Returns a new Content Assist Manager
   *
   */
  public CFEContentAssistManager newCAM() {
    CFEContentAssistManager camInstance = new CFEContentAssistManager();
    CFMLTagAssist cfmlAssistor = new CFMLTagAssist(DictionaryManager.getDictionary(DictionaryManager.CFDIC));
    HTMLTagAssistContributor htmlAssistor = new HTMLTagAssistContributor(DictionaryManager
        .getDictionary(DictionaryManager.HTDIC));

    camInstance.registerRootAssist(new CFContentAssist());
    camInstance.registerRootAssist(new CFMLScopeAssist());
View Full Code Here

TOP

Related Classes of org.cfeclipse.cfml.editors.contentassist.CFMLTagAssist

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.