View Javadoc
1   //
2   // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
3   // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
4   // Any modifications to this file will be lost upon recompilation of the source schema. 
5   // Generated on: 2017.04.23 at 07:23:18 PM CEST 
6   //
7   
8   
9   package org.w3._2001.xmlschema;
10  
11  import java.util.Date;
12  import javax.xml.bind.annotation.adapters.XmlAdapter;
13  
14  public class Adapter1
15      extends XmlAdapter<String, Date>
16  {
17  
18  
19      public Date unmarshal(String value) {
20          return (com.hack23.cia.model.common.xml.XmlTimeTypeAdapter.parseDateTime(value));
21      }
22  
23      public String marshal(Date value) {
24          return (com.hack23.cia.model.common.xml.XmlTimeTypeAdapter.printDateTime(value));
25      }
26  
27  }