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

📄 onetoone.java

📁 介绍了hibernate的入门有一些基本常用的事例
💻 JAVA
字号:
//$Id: OneToOne.java,v 1.11 2005/02/20 23:18:14 oneovthafew Exp $package org.hibernate.mapping;import java.util.ArrayList;import java.util.Iterator;import org.hibernate.MappingException;import org.hibernate.type.EntityType;import org.hibernate.type.ForeignKeyDirection;import org.hibernate.type.SpecialOneToOneType;import org.hibernate.type.Type;import org.hibernate.type.TypeFactory;/** * A one-to-one association mapping * @author Gavin King */public class OneToOne extends ToOne {	private boolean constrained;	private ForeignKeyDirection foreignKeyType;	private KeyValue identifier;	private String propertyName;	public OneToOne(Table table, KeyValue identifier) throws MappingException {		super(table);		this.identifier = identifier;	}	public Type getType() throws MappingException {		if ( getColumnIterator().hasNext() ) {			return new SpecialOneToOneType( 					propertyName, 					getReferencedEntityName(), 					foreignKeyType, 					referencedPropertyName 				);		}		else {			return TypeFactory.oneToOne( 					getReferencedEntityName(), 					foreignKeyType, 					referencedPropertyName, 					isEmbedded() 				);		}	}	public void createForeignKey() throws MappingException {		if ( constrained && referencedPropertyName==null) {			//TODO: handle the case of a foreign key to something other than the pk			createForeignKeyOfEntity( ( (EntityType) getType() ).getAssociatedEntityName() );		}	}	public java.util.List getConstraintColumns() {		ArrayList list = new ArrayList();		Iterator iter = identifier.getColumnIterator();		while ( iter.hasNext() ) list.add( iter.next() );		return list;	}	/**	 * Returns the constrained.	 * @return boolean	 */	public boolean isConstrained() {		return constrained;	}	/**	 * Returns the foreignKeyType.	 * @return AssociationType.ForeignKeyType	 */	public ForeignKeyDirection getForeignKeyType() {		return foreignKeyType;	}	/**	 * Returns the identifier.	 * @return Value	 */	public KeyValue getIdentifier() {		return identifier;	}	/**	 * Sets the constrained.	 * @param constrained The constrained to set	 */	public void setConstrained(boolean constrained) {		this.constrained = constrained;	}	/**	 * Sets the foreignKeyType.	 * @param foreignKeyType The foreignKeyType to set	 */	public void setForeignKeyType(ForeignKeyDirection foreignKeyType) {		this.foreignKeyType = foreignKeyType;	}	/**	 * Sets the identifier.	 * @param identifier The identifier to set	 */	public void setIdentifier(KeyValue identifier) {		this.identifier = identifier;	}	public boolean isNullable() {		return !constrained;	}	public Object accept(ValueVisitor visitor) {		return visitor.accept(this);	}		public String getPropertyName() {		return propertyName;	}	public void setPropertyName(String propertyName) {		this.propertyName = propertyName==null ? null : propertyName.intern();	}}

⌨️ 快捷键说明

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