| Home >> All >> org >> hibernate >> id >> [ insert Javadoc ] |
Source code: org/hibernate/id/insert/Binder.java
1 package org.hibernate.id.insert; 2 3 import java.sql.PreparedStatement; 4 import java.sql.SQLException; 5 6 /** 7 * @author Steve Ebersole 8 */ 9 public interface Binder { 10 public void bindValues(PreparedStatement ps) throws SQLException; 11 public Object getEntity(); 12 }