FileDocCategorySizeDatePackage
List.javaAPI DocHibernate 3.2.5879Sat Feb 19 20:34:50 GMT 2005org.hibernate.mapping

List

public class List extends IndexedCollection
A list mapping has a primary key consisting of the key columns + index column.
author
Gavin King

Fields Summary
private int
baseIndex
Constructors Summary
public List(PersistentClass owner)

		super(owner);
	
Methods Summary
public java.lang.Objectaccept(ValueVisitor visitor)

		return visitor.accept(this);
	
public intgetBaseIndex()

		return baseIndex;
	
public org.hibernate.type.CollectionTypegetDefaultCollectionType()

		return TypeFactory.list( getRole(), getReferencedPropertyName(), isEmbedded() );
	
public booleanisList()

		return true;
	
public voidsetBaseIndex(int baseIndex)

		this.baseIndex = baseIndex;