Adapter2.java
- //
- // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
- // See <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
- // Any modifications to this file will be lost upon recompilation of the source schema.
- // Generated on: 2019.08.22 at 12:16:01 PM UTC
- //
- package ejava.projects.eleague.dto;
- import java.util.Date;
- import javax.xml.bind.annotation.adapters.XmlAdapter;
- public class Adapter2
- extends XmlAdapter<String, Date>
- {
- public Date unmarshal(String value) {
- return (ejava.projects.eleague.xml.DateConverter.parseDate(value));
- }
- public String marshal(Date value) {
- return (ejava.projects.eleague.xml.DateConverter.printDate(value));
- }
- }