org.jboss.dna.common.text
Class TokenStream.CaseInsensitiveTokenFactory

java.lang.Object
  extended by org.jboss.dna.common.text.TokenStream.CaseInsensitiveTokenFactory
All Implemented Interfaces:
TokenStream.Tokens
Enclosing class:
TokenStream

public class TokenStream.CaseInsensitiveTokenFactory
extends Object


Constructor Summary
TokenStream.CaseInsensitiveTokenFactory()
           
 
Method Summary
 void addToken(Position position, int startIndex, int endIndex, int type)
          Create a single- or multi-character token with the supplied type and with the characters in the range given by the starting and ending index in the character stream.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

TokenStream.CaseInsensitiveTokenFactory

public TokenStream.CaseInsensitiveTokenFactory()
Method Detail

addToken

public void addToken(Position position,
                     int startIndex,
                     int endIndex,
                     int type)
Create a single- or multi-character token with the supplied type and with the characters in the range given by the starting and ending index in the character stream. The character at the ending index is not included in the token (as this is standard practice when using 0-based indexes).

Parameters:
position - the position (line and column numbers) of this new token; may not be null
startIndex - the index of the first character to appear in the token; must be a valid index in the stream
endIndex - the index just past the last character to appear in the token; must be a valid index in the stream
type - the type of the token
See Also:
TokenStream.Tokens.addToken(Position,int, int, int)


Copyright © 2008-2010 JBoss, a division of Red Hat. All Rights Reserved.