From: <dr...@us...> - 2002-11-10 20:51:16
|
Update of /cvsroot/webmacro/webmacro/src/org/webmacro In directory usw-pr-cvs1:/tmp/cvs-serv2144/src/org/webmacro Modified Files: Context.java Log Message: fixng bug #66: implement .toString() method for Context and Form Index: Context.java =================================================================== RCS file: /cvsroot/webmacro/webmacro/src/org/webmacro/Context.java,v retrieving revision 1.55 retrieving revision 1.56 diff -C2 -d -r1.55 -r1.56 *** Context.java 24 Jul 2002 07:20:36 -0000 1.55 --- Context.java 10 Nov 2002 20:51:12 -0000 1.56 *************** *** 742,746 **** _prof.stopEvent(); } ! /* Convenience methods for primitive types */ --- 742,754 ---- _prof.stopEvent(); } ! ! /** ! * Dump the variables (and their values) contained in this Context. Output is similiar to ! * <code>java.util.HashMap.toString()</code> ! */ ! public String toString() { ! return _variables.toString(); ! } ! /* Convenience methods for primitive types */ |