FileDocCategorySizeDatePackage
DefaultableListImpl.javaAPI DocHibernate 3.2.5689Tue May 08 22:52:56 BST 2007org.hibernate.test.usercollection.parameterized

DefaultableListImpl

public class DefaultableListImpl extends ArrayList implements DefaultableList
Implementation of our specialized collection contract
author
Holger Brands
author
Steve Ebersole

Fields Summary
private String
defaultValue
Constructors Summary
public DefaultableListImpl()

	
public DefaultableListImpl(int anticipatedSize)

		super( anticipatedSize + ( int ) Math.ceil( anticipatedSize * .75f ) );
	
Methods Summary
public java.lang.StringgetDefaultValue()

        return defaultValue;
    
public voidsetDefaultValue(java.lang.String defaultValue)

        this.defaultValue = defaultValue;