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

📄 loadable.java

📁 人力资源管理系统主要包括:人员管理、招聘管理、培训管理、奖惩管理和薪金管理五大管理模块。
💻 JAVA
字号:
//$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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -