Biter

regexp
Class RETokenAny

java.lang.Object
  |
  +--regexp.REToken
        |
        +--regexp.RETokenAny

class RETokenAny
extends REToken


Field Summary
private  boolean m_newline
          True if '.' can match a newline (RE_DOT_NEWLINE)
private  boolean m_null
          True if '.' can't match a null (RE_DOT_NOT_NULL)
 
Fields inherited from class regexp.REToken
m_next, m_subIndex, m_uncle, newline
 
Constructor Summary
(package private) RETokenAny(int f_subIndex, boolean f_newline, boolean f_null)
           
 
Method Summary
(package private)  void dump(StringBuffer os)
           
(package private)  int getMinimumLength()
           
(package private)  int[] match(CharIndexed input, int index, int eflags, REMatch mymatch)
           
 
Methods inherited from class regexp.REToken
chain, dumpAll, next, setUncle
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Field Detail

m_newline

private boolean m_newline
True if '.' can match a newline (RE_DOT_NEWLINE)

m_null

private boolean m_null
True if '.' can't match a null (RE_DOT_NOT_NULL)
Constructor Detail

RETokenAny

RETokenAny(int f_subIndex,
           boolean f_newline,
           boolean f_null)
Method Detail

getMinimumLength

int getMinimumLength()
Overrides:
getMinimumLength in class REToken

match

int[] match(CharIndexed input,
            int index,
            int eflags,
            REMatch mymatch)
Overrides:
match in class REToken

dump

void dump(StringBuffer os)
Overrides:
dump in class REToken

Biter

From the Biter project.