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

📄 mapping.java

📁 一个Java持久层类库
💻 JAVA
字号:
//$Id: Mapping.java 11398 2007-04-10 14:54:07Z steve.ebersole@jboss.com $package org.hibernate.engine;import org.hibernate.MappingException;import org.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 org.hibernate.type.Type * @see org.hibernate.impl.SessionFactoryImpl * @see org.hibernate.cfg.Configuration * @author Gavin King */public interface Mapping {	public Type getIdentifierType(String className) throws MappingException;	public String getIdentifierPropertyName(String className) throws MappingException;	public Type getReferencedPropertyType(String className, String propertyName) throws MappingException;}

⌨️ 快捷键说明

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