59606162636465
{ public InterfaceLexer(InputStream in) { this(new ByteBuffer(in)); } public InterfaceLexer(Reader in) { this(new CharBuffer(in)); }
93949596979899
} public DefaultTemplateLexer(InputStream in) { this(new ByteBuffer(in)); } public DefaultTemplateLexer(Reader in) { this(new CharBuffer(in)); }
} public AngleBracketTemplateLexer(InputStream in) { this(new ByteBuffer(in)); } public AngleBracketTemplateLexer(Reader in) { this(new CharBuffer(in)); }
{ public ActionLexer(InputStream in) { this(new ByteBuffer(in)); } public ActionLexer(Reader in) { this(new CharBuffer(in)); }
299300301302303304305
} public GroovyLexer(InputStream in) { this(new ByteBuffer(in)); } public GroovyLexer(Reader in) { this(new CharBuffer(in)); }
285286287288289290291
41424344454647
{ public JDOQLLexer(InputStream in) { this(new ByteBuffer(in)); } public JDOQLLexer(Reader in) { this(new CharBuffer(in)); }
61626364656667
{ public OQLLexer(InputStream in) { this(new ByteBuffer(in)); } public OQLLexer(Reader in) { this(new CharBuffer(in)); }
310311312313314315316
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)); }