Changes between Version 10 and Version 11 of ebXMLObjectModel
- Timestamp:
- 07/21/08 08:40:10 (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ebXMLObjectModel
v10 v11 48 48 {{{ 49 49 50 RegistryObject registryObject = new RegistryObject(); 51 // .. 52 // set data to this registryObject .. 53 // .. 50 54 51 55 IBindingFactory bfact = BindingDirectory.getFactory(RegistryObject.class); … … 55 59 // pretty-print the XML output 56 60 marshallingContext.setIndent(3); 57 marshallingContext.marshalDocument( o, "UTF-8", null);61 marshallingContext.marshalDocument(registryObject, "UTF-8", null); 58 62 59 63 }}}