[jboss-cvs] jboss-seam/src/gen/org/jboss/seam/tool ...
Gavin King
gavin.king at jboss.com
Sun Dec 10 09:22:28 EST 2006
User: gavin
Date: 06/12/10 09:22:28
Modified: src/gen/org/jboss/seam/tool Util.java
Log:
JBSEAM-577 page params with no value binding
Revision Changes Path
1.2 +4 -1 jboss-seam/src/gen/org/jboss/seam/tool/Util.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: Util.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/gen/org/jboss/seam/tool/Util.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- Util.java 8 Nov 2006 03:55:28 -0000 1.1
+++ Util.java 10 Dec 2006 14:22:28 -0000 1.2
@@ -6,5 +6,8 @@
{
return name.substring(0, 1).toLowerCase() + name.substring(1);
}
-
+ public String upper(String name)
+ {
+ return name.substring(0, 1).toUpperCase() + name.substring(1);
+ }
}
More information about the jboss-cvs-commits
mailing list