mapping.java

来自「用JSP 开发的人力资源系统。可实现用户操作」· Java 代码 · 共 29 行

JAVA
29
字号
//$Id: Mapping.java,v 1.5.2.2 2003/09/02 11:31:32 oneovthafew Exp $package net.sf.hibernate.engine;import net.sf.hibernate.MappingException;import net.sf.hibernate.type.Type;/** * Defines operations common to "compiled" mappings (ie. <tt>SessionFactory</tt>) * and "uncompiled" mappings (ie. <tt>Configuration</tt>) that are used by * implementors of <tt>Type</tt>. *  * @see net.sf.hibernate.type.Type * @see net.sf.hibernate.impl.SessionFactoryImpl * @see net.sf.hibernate.cfg.Configuration * @author Gavin King */public interface Mapping {	public Type getIdentifierType(Class persistentClass) throws MappingException;	public String getIdentifierPropertyName(Class persistentClass) throws MappingException;	public Type getPropertyType(Class persistentClass, String propertyName) throws MappingException;}

⌨️ 快捷键说明

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