?? parser.java
字號:
//$Id: Parser.java,v 1.1 2004/12/08 00:22:20 oneovthafew Exp $package org.hibernate.hql.classic;import org.hibernate.QueryException;/** * A parser is a state machine that accepts a string of tokens, * bounded by start() and end() and modifies a QueryTranslator. Parsers * are NOT intended to be threadsafe. They SHOULD be reuseable * for more than one token stream. */public interface Parser { public void token(String token, QueryTranslatorImpl q) throws QueryException; public void start(QueryTranslatorImpl q) throws QueryException; public void end(QueryTranslatorImpl q) throws QueryException;}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -