/jcg-andygene-web-archetype/src/main/resources/archetype-resources/src/main/java/util/FormatUtil.java
http://jcg-andygene-web.googlecode.com/ · Java · 27 lines · 19 code · 8 blank · 0 comment · 0 complexity · 4353d18e6801952f5ab5224b3e86c34b MD5 · raw file
- #set( $symbol_pound = '#' )
- #set( $symbol_dollar = '$' )
- #set( $symbol_escape = '\' )
- package ${package}.util;
- public class FormatUtil {
- private String format;
-
- public FormatUtil() {
-
- }
- public FormatUtil(String format) {
- super();
- this.format = format;
- }
- public String getFormat() {
- return format;
- }
- public void setFormat(String format) {
- this.format = format;
- }
-
-
- }