Uses of Class
ij.plugin.frame.jedit.syntax.ParserRuleSet

Packages that use ParserRuleSet
ij.plugin.frame.jedit.syntax The jEdit syntax highlighting engine. 
 

Uses of ParserRuleSet in ij.plugin.frame.jedit.syntax
 

Fields in ij.plugin.frame.jedit.syntax declared as ParserRuleSet
 ParserRuleSet ParserRule.delegate
           
 ParserRuleSet Token.rules
          The rule set of this token.
 ParserRuleSet TokenMarker.LineContext.rules
           
 

Methods in ij.plugin.frame.jedit.syntax that return ParserRuleSet
 ParserRuleSet TokenMarker.getMainRuleSet()
           
protected  ParserRuleSet DefaultTokenHandler.getParserRuleSet(TokenMarker.LineContext context)
           
 ParserRuleSet TokenMarker.getRuleSet(java.lang.String setName)
           
 ParserRuleSet[] TokenMarker.getRuleSets()
           
static ParserRuleSet ParserRuleSet.getStandardRuleSet(byte id)
          Returns a parser rule set that highlights everything with the specified token type.
 

Methods in ij.plugin.frame.jedit.syntax with parameters of type ParserRuleSet
 void ParserRuleSet.addRuleSet(ParserRuleSet ruleset)
          Adds all rules contained in the given ruleset.
 void TokenMarker.addRuleSet(ParserRuleSet rules)
           
static ParserRule ParserRule.createEOLSpanRule(int posMatch, java.lang.String seq, ParserRuleSet delegate, 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)
           
 

Constructors in ij.plugin.frame.jedit.syntax with parameters of type ParserRuleSet
Chunk(byte id, int offset, int length, ParserRuleSet rules, SyntaxStyle[] styles, byte defaultID)
           
Chunk(float width, int offset, ParserRuleSet rules)
           
Token(byte id, int offset, int length, ParserRuleSet rules)
          Creates a new token.
TokenMarker.LineContext(ParserRuleSet rs, TokenMarker.LineContext lc)