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

📄 value.java

📁 JSP+SQL编写的人力资源管理系统
💻 JAVA
字号:
//$Id: Value.java,v 1.13.2.9 2003/11/09 01:46:25 oneovthafew Exp $package net.sf.hibernate.mapping;import java.util.Iterator;import net.sf.hibernate.MappingException;import net.sf.hibernate.engine.Mapping;import net.sf.hibernate.type.Type;/** * A value is anything that is persisted by value, instead of * by reference. It is essentially a Hibernate Type, together * with zero or more columns. Values are wrapped by things with  * higher level semantics, for example properties, collections,  * classes. *  * @author Gavin King */public interface Value {	public int getColumnSpan();	public Iterator getColumnIterator();	public Type getType();	public int getOuterJoinFetchSetting();	public Table getTable();	public Formula getFormula();	public boolean isUnique();	public boolean isNullable();	public void createForeignKey();	public boolean isSimpleValue();	public boolean isValid(Mapping mapping) throws MappingException;}

⌨️ 快捷键说明

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