Package tool.editors.rules

Examples of tool.editors.rules.DoubleHyphenCommentRule


    IToken toolSQL = new Token(TOOL_SQL);

   
    ArrayList<IPredicateRule> rules = new ArrayList<IPredicateRule>();
    rules.add(new MultiLineCommentRule(toolComment));
    rules.add(new DoubleHyphenCommentRule(toolComment));
    rules.add(new DoubleSlashCommentRule(toolComment));
    rules.add(new MultiLineRule("SQL", ";", toolSQL));
    rules.add(new MultiLineRule("sql", ";", toolSQL));
    //rules.add(new MultiLineRule("SQL ", "do", toolSQL));
    //rules.add(new MultiLineRule("sql ", "do", toolSQL));
View Full Code Here

TOP

Related Classes of tool.editors.rules.DoubleHyphenCommentRule

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.