Package org.hibernate.cfg.annotations

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

//$Id: PrimitiveArrayBinder.java 14736 2008-06-04 14:23:42Z hardy.ferentschik $
package org.hibernate.cfg.annotations;

import org.hibernate.mapping.Collection;
import org.hibernate.mapping.PersistentClass;
import org.hibernate.mapping.PrimitiveArray;

/**
* @author Emmanuel Bernard
*/
public class PrimitiveArrayBinder extends ArrayBinder {
  @Override
  protected Collection createCollection(PersistentClass persistentClass) {
    return new PrimitiveArray( persistentClass );
  }
}
TOP

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

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.