Uses of Class
gnu.regexp.REException

Packages that use REException
gnu.regexp   
ij.plugin.frame.jedit.syntax The jEdit syntax highlighting engine. 
 

Uses of REException in gnu.regexp
 

Methods in gnu.regexp that throw REException
protected  void RE.initialize(java.lang.Object patternObj, int cflags, RESyntax syntax, int myIndex, int nextSub)
           
 

Constructors in gnu.regexp that throw REException
RE(java.lang.Object pattern)
          Constructs a regular expression pattern buffer without any compilation flags set, and using the default syntax (RESyntax.RE_SYNTAX_PERL5).
RE(java.lang.Object pattern, int cflags)
          Constructs a regular expression pattern buffer using the specified compilation flags and the default syntax (RESyntax.RE_SYNTAX_PERL5).
RE(java.lang.Object pattern, int cflags, RESyntax syntax)
          Constructs a regular expression pattern buffer using the specified compilation flags and regular expression syntax.
 

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

Methods in ij.plugin.frame.jedit.syntax that throw REException
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)