Update of /cvsroot/hibernate/Hibernate/cirrus/hibernate/test
In directory sc8-pr-cvs1:/tmp/cvs-serv19832/hibernate/test
Modified Files:
Glarch.java
Log Message:
more work on infoString() stuff
integrated setter location patch by Alex Staubo
integrated composite-element codegen patch by Wolfgang Jung
Index: Glarch.java
===================================================================
RCS file: /cvsroot/hibernate/Hibernate/cirrus/hibernate/test/Glarch.java,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -d -r1.18 -r1.19
*** Glarch.java 26 Nov 2002 03:35:44 -0000 1.18
--- Glarch.java 7 Dec 2002 08:10:24 -0000 1.19
***************
*** 38,41 ****
--- 38,45 ----
}
+ public void setName(int name) {
+ this.name = Integer.toString(name);
+ }
+
public GlarchProxy getNext() {
return next;
|