net.sf.mpxj.conceptdraw.schema.Adapter8 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mpxj Show documentation
Show all versions of mpxj Show documentation
Library that provides facilities to allow project information to be manipulated in Java and .Net. Supports a range of data formats: Microsoft Project Exchange (MPX), Microsoft Project (MPP,MPT), Microsoft Project Data Interchange (MSPDI XML), Microsoft Project Database (MPD), Planner (XML), Primavera (PM XML, XER, and database), Asta Powerproject (PP, MDB), Asta Easyplan (PP), Phoenix Project Manager (PPX), FastTrack Schedule (FTS), and the Standard Data Exchange Format (SDEF).
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.07.12 at 04:42:45 PM BST
//
package net.sf.mpxj.conceptdraw.schema;
import javax.xml.bind.annotation.adapters.XmlAdapter;
import net.sf.mpxj.TimeUnit;
public class Adapter8 extends XmlAdapter
{
@Override public TimeUnit unmarshal(String value)
{
return (net.sf.mpxj.conceptdraw.DatatypeConverter.parseTimeUnit(value));
}
@Override public String marshal(TimeUnit value)
{
return (net.sf.mpxj.conceptdraw.DatatypeConverter.printTimeUnit(value));
}
}