Uses of Interface
org.antlr.runtime.CharStream

Packages that use CharStream
org.antlr.runtime   
 

Uses of CharStream in org.antlr.runtime
 

Classes in org.antlr.runtime that implement CharStream
 class ANTLRFileStream
          This is a char buffer stream that is loaded from a file all at once when you construct the object.
 class ANTLRInputStream
          A kind of ReaderStream that pulls from an InputStream.
 class ANTLRReaderStream
          Vacuum all input from a Reader and then treat it like a StringStream.
 class ANTLRStringStream
          A pretty quick CharStream that pulls all data from an array directly.
 

Fields in org.antlr.runtime declared as CharStream
protected  CharStream Lexer.input
          Where is the lexer drawing characters from?
protected  CharStream CommonToken.input
           
 

Methods in org.antlr.runtime with parameters of type CharStream
 void Lexer.setCharStream(CharStream input)
          Set the char stream and reset the lexer
 

Constructors in org.antlr.runtime with parameters of type CharStream
CommonToken(CharStream input, int type, int channel, int start, int stop)
           
Lexer(CharStream input)