public void marshal(final Object object, final XMLStreamWriter output) throws JAXBException {
final Context context = begin();
try {
marshaller.marshal(object, output);
} finally {
context.finish();
}
}
/**
* Delegates the marshalling to the wrapped marshaller.