Update of /cvsroot/hibernate/Hibernate2/src/net/sf/hibernate/metadata
In directory sc8-pr-cvs1:/tmp/cvs-serv947/hibernate/metadata
Modified Files:
ClassMetadata.java
Log Message:
* fixed a bug in SQLExpression
* fixed a bug in Expression.ge()
* improved proxy handling
* fixed problems with select new
* reworked import mechanism
* added <any> mappings
Index: ClassMetadata.java
===================================================================
RCS file: /cvsroot/hibernate/Hibernate2/src/net/sf/hibernate/metadata/ClassMetadata.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** ClassMetadata.java 5 Jan 2003 02:11:22 -0000 1.3
--- ClassMetadata.java 29 Mar 2003 04:08:48 -0000 1.4
***************
*** 40,43 ****
--- 40,53 ----
/**
+ * Get the value of a particular (named) property
+ */
+ public Object getPropertyValue(Object object, String propertyName) throws HibernateException;
+
+ /**
+ * Set the value of a particular (named) property
+ */
+ public void setPropertyValue(Object object, String propertyName, Object value) throws HibernateException;
+
+ /**
* Return the values of the mapped properties of the object
*/
|