1 package org.hibernate.tuple; 3 4 import org.hibernate.HibernateException; 5 6 35 public interface Tuplizer { 36 37 44 public Object [] getPropertyValues(Object entity) throws HibernateException; 45 46 53 public void setPropertyValues(Object entity, Object [] values) throws HibernateException; 54 55 63 public Object getPropertyValue(Object entity, int i) throws HibernateException; 64 65 71 public Object instantiate() throws HibernateException; 72 73 81 public boolean isInstance(Object object); 82 83 93 public Class getMappedClass(); 94 95 } 96 | Popular Tags |