Update of /cvsroot/hibernate/Hibernate2/src/net/sf/hibernate
In directory sc8-pr-cvs1:/tmp/cvs-serv8589/src/net/sf/hibernate
Modified Files:
Session.java
Log Message:
doco fixes
Index: Session.java
===================================================================
RCS file: /cvsroot/hibernate/Hibernate2/src/net/sf/hibernate/Session.java,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** Session.java 25 Apr 2003 03:40:30 -0000 1.17
--- Session.java 26 Apr 2003 03:58:29 -0000 1.18
***************
*** 197,201 ****
/**
! * Return the persistent instance of the given entity class with the given identifier.
*
* @param theClass a persistent class
--- 197,205 ----
/**
! * Return the persistent instance of the given entity class with the given identifier.<br>
! * <br>
! * You should not use this method to determine if an instance exists (use <tt>find()</tt>
! * instead). Use this only to retrieve an instance that you assume exists, where non-existence
! * would be an actual error.
*
* @param theClass a persistent class
***************
*** 207,211 ****
/**
! * Read the persistent state associated with the given identifier into the given transient instance.
*
* @param object an "empty" instance of the persistent class
--- 211,216 ----
/**
! * Read the persistent state associated with the given identifier into the given transient
! * instance.
*
* @param object an "empty" instance of the persistent class
|