| Article: |
Template-Based Code Generation with Apache Velocity, Part 1 | |
| Subject: | Where this class file is? GeneratorUtility | |
| Date: | 2007-07-04 11:01:04 | |
| From: | singhrandhir | |
|
I was not able to find GeneratorUtility class in velocity jar files. Could you please tell me where to get this? |
||
Showing messages 1 through 3 of 3.
-
Where this class file is? GeneratorUtility
2007-07-16 01:57:59 mclai [View]
-
Where this class file is? GeneratorUtility
2007-07-16 01:58:27 mclai [View]
Same problem here: I cannot find GeneratorUtility in any package. However, I wrote my own GeneratorUtiltity class to supply the needed method by ClassGenerator, which is:
String firstToUpperCase(String).
Everything will work.
-
Where this class file is? GeneratorUtility
2010-06-13 07:04:45 jpr111a [View]
Just create it
public class GeneratorUtility {
public String firstToUpperCase(String arg){
...
}
}



String firstToUpperCase(String).
Everything will work.