FileDocCategorySizeDatePackage
MyList.javaAPI DocHibernate 3.2.5392Tue May 08 22:52:56 BST 2007org.hibernate.test.usercollection.basic

MyList.java

package org.hibernate.test.usercollection.basic;

import java.util.ArrayList;

/**
 * A custom collection class. We extend a java.util.Collection class, but that is not required. 
 * It could be totally non-java-collection type, but then we would need to implement all the PersistentCollection methods.
 * 
 * @author max
 *
 */
public class MyList extends ArrayList implements IMyList {
	
}