Uses of Class
org.gjt.sp.jedit.syntax.ParserRule

Packages that use ParserRule
org.gjt.sp.jedit.syntax The jEdit syntax highlighting engine. 
 

Uses of ParserRule in org.gjt.sp.jedit.syntax
 

Fields in org.gjt.sp.jedit.syntax declared as ParserRule
 ParserRule TokenMarker.LineContext.inRule
           
 ParserRule ParserRule.next
           
 

Methods in org.gjt.sp.jedit.syntax that return ParserRule
static ParserRule ParserRule.createEOLSpanRule(int posMatch, java.lang.String seq, ParserRuleSet delegate, byte id, boolean excludeMatch)
           
static ParserRule ParserRule.createEscapeRule(java.lang.String seq)
           
static ParserRule ParserRule.createMarkFollowingRule(int posMatch, java.lang.String seq, byte id, boolean excludeMatch)
           
static ParserRule ParserRule.createMarkPreviousRule(int posMatch, java.lang.String seq, byte id, boolean excludeMatch)
           
static ParserRule ParserRule.createRegexpEOLSpanRule(char hashChar, int posMatch, java.lang.String seq, ParserRuleSet delegate, byte id, boolean excludeMatch, boolean ignoreCase)
           
static ParserRule ParserRule.createRegexpSequenceRule(char hashChar, int posMatch, java.lang.String seq, ParserRuleSet delegate, byte id, boolean ignoreCase)
           
static ParserRule ParserRule.createRegexpSpanRule(char hashChar, int startPosMatch, java.lang.String start, int endPosMatch, java.lang.String end, ParserRuleSet delegate, byte id, boolean excludeMatch, boolean noLineBreak, boolean noWordBreak, boolean ignoreCase, boolean noEscape)
           
static ParserRule ParserRule.createSequenceRule(int posMatch, java.lang.String seq, ParserRuleSet delegate, byte id)
           
static ParserRule ParserRule.createSpanRule(int startPosMatch, java.lang.String start, int endPosMatch, java.lang.String end, ParserRuleSet delegate, byte id, boolean excludeMatch, boolean noLineBreak, boolean noWordBreak, boolean noEscape)
           
 ParserRule ParserRuleSet.getEscapeRule()
           
 ParserRule ParserRuleSet.getRules(char ch)
           
 

Methods in org.gjt.sp.jedit.syntax with parameters of type ParserRule
 void ParserRuleSet.addRule(ParserRule r)
           
 void ParserRuleSet.setEscapeRule(ParserRule escapeRule)