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

📄 propertydata.java

📁 hibernate3.2.6源码和jar包
💻 JAVA
字号:
package org.hibernate.cfg;import org.hibernate.MappingException;import org.hibernate.annotations.common.reflection.XClass;import org.hibernate.annotations.common.reflection.XProperty;public interface PropertyData {	/**	 * @return default member access (whether field or property)	 * @throws MappingException No getter or field found or wrong JavaBean spec usage	 */	public String getDefaultAccess();	/**	 * @return property name	 * @throws MappingException No getter or field found or wrong JavaBean spec usage	 */	public String getPropertyName() throws MappingException;	/**	 * Returns the returned class itself or the element type if an array	 */	public XClass getClassOrElement() throws MappingException;	/**	 * Return the class itself	 */	public XClass getPropertyClass() throws MappingException;	/**	 * Returns the returned class name itself or the element type if an array	 */	public String getClassOrElementName() throws MappingException;	/**	 * Returns the returned class name itself	 */	public String getTypeName() throws MappingException;	public XProperty getProperty();}

⌨️ 快捷键说明

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