1 package org.snipsnap.snip.name; 2 3 27 28 29 35 36 public class CapitalizeFormatter implements NameFormatter { 37 private NameFormatter parent = new NoneFormatter(); 39 40 public void setParent(NameFormatter parent) { 41 this.parent = parent; 42 } 43 44 public String format(String name) { 45 String parentName = parent.format(name); 46 return parentName.substring(0,1).toUpperCase() + parentName.substring(1); 47 } 48 } 49 | Popular Tags |