⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 parser.java

📁 一个Java持久层类库
💻 JAVA
字号:
//$Id: Parser.java 4907 2004-12-08 00:24:14Z oneovthafew $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 + -