?? parser.java
字號:
//$Id: Parser.java,v 1.3 2003/01/05 02:11:21 oneovthafew Exp $package net.sf.hibernate.hql;import net.sf.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, QueryTranslator q) throws QueryException; public void start(QueryTranslator q) throws QueryException; public void end(QueryTranslator q) throws QueryException;}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -