static <T> void |
JAXBFiles.marshal(javax.xml.bind.JAXBElement<T> theDataElement,
java.lang.String theFileName,
java.lang.String theSchema) |
Writes an XML file from the given xml data object to a file.
|
static <T> java.lang.String |
JAXBFiles.marshalToString(javax.xml.bind.JAXBElement<T> theDataElement,
java.lang.String theSchema) |
Writes a given xml data object to a string.
|
static <T> T |
JAXBFiles.unmarshal(java.io.Reader theReader,
java.lang.Class<T> theClass) |
Returns the xml data object saved in the supplied reader.
|
static <T> T |
JAXBFiles.unmarshal(java.lang.String theFileName,
java.lang.Class<T> theClass) |
Returns the xml data object saved in the supplied file.
|
static <T> T |
JAXBFiles.unmarshalInclude(java.lang.String theFileName,
java.lang.Class<T> theClass) |
Returns the xml data object saved in the supplied file, uses includes.
|