All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class pat.Rthings

java.lang.Object
   |
   +----pat.Rthings

public class Rthings
extends Object
Shareware: package pat Copyright 1996, Steven R. Brandt

This class only exists to store data needed during the compilation of a regular expression.


Variable Index

 o dontMatchInQuotes
Needed in case (?Q) is encountered, to pass back the message that dontMatchInQuotes should be set.
 o ignoreCase
Needed in case (?i) is encountered, to pass back the message that ignoreCase should be set.
 o optimizeMe
Needed in case (?o) is encountered, to pass back the message that optimize() should be run after compilation pass 1.
 o val
The numeric identity of the next () to be encountered while compiling the pattern.

Variables

 o val
  public int val
The numeric identity of the next () to be encountered while compiling the pattern.

 o ignoreCase
  public boolean ignoreCase
Needed in case (?i) is encountered, to pass back the message that ignoreCase should be set.

 o dontMatchInQuotes
  public boolean dontMatchInQuotes
Needed in case (?Q) is encountered, to pass back the message that dontMatchInQuotes should be set.

 o optimizeMe
  public boolean optimizeMe
Needed in case (?o) is encountered, to pass back the message that optimize() should be run after compilation pass 1.


All Packages  Class Hierarchy  This Package  Previous  Next  Index