1 package tests.jfun.yan.xml.models; 2 3 import java.text.DateFormat ; 4 5 import jfun.yan.util.deserializer.Deserializer; 6 7 public class SimpleDateDeserializer implements Deserializer { 8 private final DateFormat fmt; 9 public Object deserialize(String str) throws Throwable { 10 return fmt.parseObject(str); 11 } 12 public SimpleDateDeserializer(DateFormat fmt) { 13 this.fmt = fmt; 14 } 15 } 16 | Popular Tags |