org.hibernate.cfg.annotations.ArrayBinder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate-annotations
Show all versions of hibernate-annotations
Annotations metadata for Hibernate
package org.hibernate.cfg.annotations;
import org.hibernate.mapping.Array;
import org.hibernate.mapping.Collection;
import org.hibernate.mapping.PersistentClass;
/**
* Bind an Array
*
* @author Anthony Patricio
*/
public class ArrayBinder extends ListBinder {
public ArrayBinder() {
}
protected Collection createCollection(PersistentClass persistentClass) {
return new Array( persistentClass );
}
}