LexerSharedInputState.java
上传用户:afrynkmhm
上传日期:2007-01-06
资源大小:1262k
文件大小:1k
源码类别:

编译器/解释器

开发平台:

Others

  1. package antlr;
  2. /* ANTLR Translator Generator
  3.  * Project led by Terence Parr at http://www.jGuru.com
  4.  * Software rights: http://www.antlr.org/RIGHTS.html
  5.  *
  6.  * $Id: //depot/code/org.antlr/release/antlr-2.7.0/antlr/LexerSharedInputState.java#1 $
  7.  */
  8. import java.io.Reader;
  9. import java.io.InputStream;
  10. /** This object contains the data associated with an
  11.  *  input stream of characters.  Multiple lexers
  12.  *  share a single LexerSharedInputState to lex
  13.  *  the same input stream.
  14.  */
  15. public class LexerSharedInputState {
  16.     protected int column;
  17.     protected int line=1;
  18.     protected InputBuffer input;
  19.     /** What file (if known) caused the problem? */
  20.     protected String filename;
  21.     public int guessing = 0;
  22.     public LexerSharedInputState(InputBuffer inbuf) {
  23. input = inbuf;
  24.     }
  25.     public LexerSharedInputState(InputStream in) {
  26. this(new ByteBuffer(in));
  27.     }
  28.     public LexerSharedInputState(Reader in) {
  29. this(new CharBuffer(in));
  30.     }
  31. }