loadable.java

来自「JSP+SQL编写的人力资源管理系统」· Java 代码 · 共 51 行

JAVA
51
字号
//$Id: Loadable.java,v 1.10.2.7 2003/11/30 12:31:13 oneovthafew Exp $package net.sf.hibernate.persister;import net.sf.hibernate.type.Type;/** * Implemented by a <tt>ClassPersister</tt> that may be loaded * using <tt>Loader</tt>. * * @see net.sf.hibernate.loader.Loader * @author Gavin King */public interface Loadable extends ClassPersister {	/**	 * Does this persistent class have subclasses?	 */	public boolean hasSubclasses();	/**	 * Get the discriminator type	 */	public Type getDiscriminatorType();	/**	 * Get the concrete subclass corresponding to the given discriminator	 * value	 */	public Class getSubclassForDiscriminatorValue(Object value);	/**	 * Get the result set aliases used for the identifier columns, given a suffix	 */	public String[] getIdentifierAliases(String suffix);	/**	 * Get the result set aliases used for the property columns, given a suffix (properties of this class, only).	 */	public String[] getPropertyAliases(String suffix, int i);	/**	 * Get the result set aliases used for the identifier columns, given a suffix	 */	public String getDiscriminatorAlias(String suffix);	}

⌨️ 快捷键说明

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