1 // 2 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0 3 // See <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a> 4 // Any modifications to this file will be lost upon recompilation of the source schema. 5 // Generated on: 2019.08.22 at 12:16:01 PM UTC 6 // 7 8 9 package ejava.projects.eleague.dto; 10 11 import java.util.Date; 12 import javax.xml.bind.annotation.adapters.XmlAdapter; 13 14 public class Adapter3 15 extends XmlAdapter<String, Date> 16 { 17 18 19 public Date unmarshal(String value) { 20 return (ejava.projects.eleague.xml.DateConverter.parseDate(value)); 21 } 22 23 public String marshal(Date value) { 24 return (ejava.projects.eleague.xml.DateConverter.printDate(value)); 25 } 26 27 }