1 package org.hibernate.persister.entity; 3 4 import org.hibernate.QueryException; 5 import org.hibernate.type.Type; 6 7 13 public interface PropertyMapping { 14 18 public Type toType(String propertyName) throws QueryException; 19 23 public String [] toColumns(String alias, String propertyName) throws QueryException; 24 27 public String [] toColumns(String propertyName) throws QueryException, UnsupportedOperationException ; 28 31 public Type getType(); 32 } 33 | Popular Tags |