Changes between Version 10 and Version 11 of ebXMLObjectModel


Ignore:
Timestamp:
Jul 21, 2008, 8:40:10 AM (16 years ago)
Author:
heikki
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ebXMLObjectModel

    v10 v11  
    4848 {{{
    4949
     50    RegistryObject registryObject = new RegistryObject();
     51    // ..
     52    // set data to this registryObject ..
     53    // ..
    5054
    5155    IBindingFactory bfact = BindingDirectory.getFactory(RegistryObject.class);
     
    5559    // pretty-print the XML output
    5660    marshallingContext.setIndent(3);
    57     marshallingContext.marshalDocument(o, "UTF-8", null);
     61    marshallingContext.marshalDocument(registryObject, "UTF-8", null);
    5862
    5963 }}}