Interface XmlMapping
-
- All Known Implementing Classes:
AbstractTypeXmlMapping
,AbstractValueXmlMapping
,AbstractXmlMapping
,AttributeXmlMapping
,CollectionXmlMapping
,ObjectXmlMapping
,ProxyXmlMapping
,ReferenceXmlMapping
,StaticXmlMapping
,TreeXmlMarshaller
,TypeXmlMapping
,ValueXmlMapping
public interface XmlMapping
Mapping of object to XML.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description XmlWriter
getWriter()
Obtains theXmlWriter
for this mapping.void
map(java.lang.Object object, XmlOutput output)
Maps the object into XML.
-
-
-
Method Detail
-
map
void map(java.lang.Object object, XmlOutput output) throws XmlMarshallException
Maps the object into XML.- Parameters:
object
- Object to map into XML.output
- Output to send the XML.- Throws:
XmlMarshallException
- If fails to map object into XML.
-
-