114115116117118119120
protected JavaRecognizer parser; // little-used link; TODO: get rid of public JavaLexer(InputStream in) { this(new ByteBuffer(in)); } public JavaLexer(Reader in) { this(new CharBuffer(in)); }
286287288289290291292
} public GroovyLexer(InputStream in) { this(new ByteBuffer(in)); } public GroovyLexer(Reader in) { this(new CharBuffer(in)); }
26272829303132
{ public SimpleQLLexer(InputStream in) { this(new ByteBuffer(in)); } public SimpleQLLexer(Reader in) { this(new CharBuffer(in)); }
83848586878889
} public XQueryLexer(InputStream in) { this(new ByteBuffer(in)); } public XQueryLexer(Reader in) { this(new CharBuffer(in)); }
32333435363738
{ public XQDocLexer(InputStream in) { this(new ByteBuffer(in)); } public XQDocLexer(Reader in) { this(new CharBuffer(in)); }
59606162636465
{ public GroupLexer(InputStream in) { this(new ByteBuffer(in)); } public GroupLexer(Reader in) { this(new CharBuffer(in)); }
55565758596061
{ public FullMaudeCommandsLexer(InputStream in) { this(new ByteBuffer(in)); } public FullMaudeCommandsLexer(Reader in) { this(new CharBuffer(in)); }
54555657585960
75767778798081
} public JavaLexer(InputStream in) { this(new ByteBuffer(in)); } public JavaLexer(Reader in) { this(new CharBuffer(in)); }
62636465666768
public ActionLexer(InputStream in) { this(new ByteBuffer(in)); } public ActionLexer(Reader in) { this(new CharBuffer(in)); }