org.w3._2001.xmlschema.Adapter1 Maven / Gradle / Ivy
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2014.05.12 at 12:16:07 PM CEST
//
package org.w3._2001.xmlschema;
import java.util.Date;
import javax.xml.bind.annotation.adapters.XmlAdapter;
public class Adapter1
extends XmlAdapter
{
public Date unmarshal(String value) {
return (org.xlcloud.xsa.ext.hpc.DateAdapter.parseDate(value));
}
public String marshal(Date value) {
return (org.xlcloud.xsa.ext.hpc.DateAdapter.printDate(value));
}
}