Examples of CFEPrimaryAssist


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

     * allow developers to extend the CFE code easily and more reliably in the future
     * resulting in fewer hacks and changes to the core code.
   * @param sourceViewer
     */
    private void setupPrimaryCFEContentAssist(ISourceViewer sourceViewer) {
        CFEPrimaryAssist mainCFAssistant = new CFEPrimaryAssist(sourceViewer,assistant);
        // we only do the assist partition types here (excludes comment partitions)
        for (int i=0;i<PartitionTypes.ASSIST_PARTITION_TYPES.length;i++) {
            assistant.setContentAssistProcessor(mainCFAssistant,PartitionTypes.ASSIST_PARTITION_TYPES[i]);
        }
    }
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.