public class MessageFormatMarshaller
extends java.lang.Object
| Modifier and Type | Class and Description |
|---|---|
static class |
MessageFormatMarshaller.MarshallerType |
| Constructor and Description |
|---|
MessageFormatMarshaller() |
| Modifier and Type | Method and Description |
|---|---|
void |
marshall(FormatWriter mFormat,
java.lang.Object inObj)
Marshall the passed object, writing it to the passed formatter.
|
java.lang.Object |
unmarshall(FormatReader mFormat)
Read a single object using the passed formatter.
|
public void marshall(FormatWriter mFormat, java.lang.Object inObj) throws FormatException
mFormat - - The formatter to write the object with.inObj - - The object to marshall.FormatException - If the marshaller does not know how to write the object.public java.lang.Object unmarshall(FormatReader mFormat) throws FormatException
mFormat - - The formatter to read with.FormatException - If a problem occurred while reading.