Package org.cfeclipse.cfml.editors.partitioner.scanners.rules

Examples of org.cfeclipse.cfml.editors.partitioner.scanners.rules.TagRule


    // <foo:bar> type tags
    rules.add(new TaglibRule(taglibtag));
   
    //catch any other tags we dont know about (xml etc) and make them
    //a different color
    rules.add(new TagRule(unktag));
   
    //for debuggin
    //rules.add(new ShowWhitespaceRule(new CFWhitespaceDetector()));
   
    IPredicateRule[] rulearry = new IPredicateRule[rules.size()];
View Full Code Here

TOP

Related Classes of org.cfeclipse.cfml.editors.partitioner.scanners.rules.TagRule

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.