1 package org.snipsnap.snip.name; 2 3 27 28 29 35 36 public class NoneFormatter implements NameFormatter { 37 private NameFormatter parent; 38 39 public void setParent(NameFormatter parent) { 40 this.parent = parent; 41 } 42 43 public String format(String name) { 44 if (parent != null) { 45 return parent.format(name); 46 } else { 47 return name; 48 } 49 } 50 } 51 | Popular Tags |