FileDocCategorySizeDatePackage
IdentifierBagType.javaAPI DocHibernate 3.2.51230Wed Jul 05 13:17:28 BST 2006org.hibernate.type

IdentifierBagType

public class IdentifierBagType extends CollectionType

Fields Summary
Constructors Summary
public IdentifierBagType(String role, String propertyRef, boolean isEmbeddedInXML)

		super(role, propertyRef, isEmbeddedInXML);
	
Methods Summary
public java.lang.ClassgetReturnedClass()

		return java.util.Collection.class;
	
public org.hibernate.collection.PersistentCollectioninstantiate(org.hibernate.engine.SessionImplementor session, org.hibernate.persister.collection.CollectionPersister persister, java.io.Serializable key)


		return new PersistentIdentifierBag(session);
	
public java.lang.Objectinstantiate(int anticipatedSize)

		return anticipatedSize <= 0 ? new ArrayList() : new ArrayList( anticipatedSize + 1 );
	
public org.hibernate.collection.PersistentCollectionwrap(org.hibernate.engine.SessionImplementor session, java.lang.Object collection)

		return new PersistentIdentifierBag( session, (java.util.Collection) collection );