resolvablenode.java

来自「介绍了hibernate的入门有一些基本常用的事例」· Java 代码 · 共 39 行

JAVA
39
字号
// $Id: ResolvableNode.java,v 1.7 2005/02/27 05:08:47 oneovthafew Exp $package org.hibernate.hql.ast;import antlr.SemanticException;import antlr.collections.AST;/** * The contract for expression sub-trees that can resolve themselves. * * @author josh Sep 25, 2004 11:27:36 AM */public interface ResolvableNode {	/**	 * Does the work of resolving an identifier or a dot	 */	void resolve(boolean generateJoin, boolean implicitJoin, String classAlias, AST parent) throws SemanticException;	/**	 * Does the work of resolving an identifier or a dot, but without a parent node	 */	void resolve(boolean generateJoin, boolean implicitJoin, String classAlias) throws SemanticException;	/**	 * Does the work of resolving an identifier or a dot, but without a parent node or alias	 */	void resolve(boolean generateJoin, boolean implicitJoin) throws SemanticException;	/**	 * Does the work of resolving inside of the scope of a function call	 */	void resolveInFunctionCall(boolean generateJoin, boolean implicitJoin) throws SemanticException;	/**	 * Does the work of resolving an an index [].	 */	void resolveIndex(AST parent) throws SemanticException;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?