Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

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

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

Fields in org.gjt.sp.jedit.syntax declared as ParserRuleSet
private  ParserRuleSet XModeHandler.lastDelegateSet
           
private  ParserRuleSet XModeHandler.rules
           
private static ParserRuleSet[] ParserRuleSet.standard
           
 ParserRuleSet ParserRule.delegate
           
 

Methods in org.gjt.sp.jedit.syntax that return ParserRuleSet
static ParserRuleSet ParserRuleSet.getStandardRuleSet(byte id)
          Returns a parser rule set that highlights everything with the specified token type.
protected  ParserRuleSet DefaultTokenHandler.getParserRuleSet(org.gjt.sp.jedit.syntax.TokenMarker.LineContext context)
           
 

Methods in org.gjt.sp.jedit.syntax with parameters of type ParserRuleSet
 void ParserRuleSet.addRuleSet(ParserRuleSet ruleset)
          Adds all rules contained in the given ruleset.
static ParserRule ParserRule.createSequenceRule(int posMatch, java.lang.String seq, ParserRuleSet delegate, byte id)
           
static ParserRule ParserRule.createRegexpSequenceRule(char hashChar, int posMatch, java.lang.String seq, ParserRuleSet delegate, byte id, boolean ignoreCase)
           
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)
           
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.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)
           
 

Constructors in org.gjt.sp.jedit.syntax with parameters of type ParserRuleSet
ParserRule(int action, char hashChar, int startPosMatch, char[] start, gnu.regexp.RE startRegexp, int endPosMatch, char[] end, ParserRuleSet delegate, byte token)
           
Chunk(float width, int offset, ParserRuleSet rules)
           
Chunk(byte id, int offset, int length, ParserRuleSet rules, SyntaxStyle[] styles, byte defaultID)