auxiliarydatabaseobject.java

来自「一个Java持久层类库」· Java 代码 · 共 32 行

JAVA
32
字号
// $Id: AuxiliaryDatabaseObject.java 7800 2005-08-10 12:13:00Z steveebersole $package org.hibernate.mapping;import java.io.Serializable;import org.hibernate.dialect.Dialect;/** * Auxiliary database objects (i.e., triggers, stored procedures, etc) defined * in the mappings.  Allows Hibernate to manage their lifecycle as part of * creating/dropping the schema. * * @author Steve Ebersole */public interface AuxiliaryDatabaseObject extends RelationalModel, Serializable {	/**	 * Add the given dialect name to the scope of dialects to which	 * this database object applies.	 *	 * @param dialectName The name of a dialect.	 */	void addDialectScope(String dialectName);	/**	 * Does this database object apply to the given dialect?	 *	 * @param dialect The dialect to check against.	 * @return True if this database object does apply to the given dialect.	 */	boolean appliesToDialect(Dialect dialect);}

⌨️ 快捷键说明

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