/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

  1. #set( $symbol_pound = '#' )
  2. #set( $symbol_dollar = '$' )
  3. #set( $symbol_escape = '\' )
  4. package ${package}.util;
  5. public class FormatUtil {
  6. private String format;
  7. public FormatUtil() {
  8. }
  9. public FormatUtil(String format) {
  10. super();
  11. this.format = format;
  12. }
  13. public String getFormat() {
  14. return format;
  15. }
  16. public void setFormat(String format) {
  17. this.format = format;
  18. }
  19. }