Package org.hibernate.cfg.annotations

Source Code of org.hibernate.cfg.annotations.ArrayBinder

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 );
  }
}
TOP

Related Classes of org.hibernate.cfg.annotations.ArrayBinder

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.