2 // This software is now distributed according to
\r
3 // the Lesser Gnu Public License. Please see
\r
4 // http://www.gnu.org/copyleft/lesser.txt for
\r
6 // -- Happy Computing!
\r
8 package com.stevesoft.pat;
\r
12 Things that need to be kept track of during a
\r
13 match. Passed along with Pattern.matchInternal. */
\r
14 public class Pthings {
\r
15 /** The current text we are attempting to match. */
\r
16 public StringLike src;
\r
17 /** Whether we should ignore the case of letters in
\r
19 public boolean ignoreCase;
\r
20 public boolean mFlag;
\r
21 /** The mask to use when dontMatchInQuotes is set. */
\r
22 public BitSet cbits;
\r
23 /** Used to keep track of backreferences. */
\r
24 //public Hashtable marks;
\r
27 /** Used to set the behavior of "." By default, it
\r
28 now fails to match the '\n' character. */
\r
29 public boolean dotDoesntMatchCR;
\r
30 /** Determine if Skipped strings need to be checked. */
\r
31 public boolean no_check;
\r