Correction: XObjects (was TLAa was SOX)

Bill la Forge (b.laforge@jxml.com)
Thu, 8 Oct 1998 10:38:00 -0400


> Document
>myMLBindingsDoc=bindingsBindings.build(myMLBindingsInputSource);
> Element root=myMLBindingsDoc.getDocumentElement();
> DomBuilder myMLBuilder=(DomBuilder)root;
> Document applicationDoc=myMLBuilder.build(applicationInputSource);

Correction:

Document
myMLBindingsDoc=domBuilderBuilder.build(myMLBindingsInputSource);
Element root=myMLBindingsDoc.getDocumentElement();
DomBuilder myMLBuilder=(DomBuilder)root;
Document applicationDoc=myMLBuilder.build(applicationInputSource);

(I should have said domBuilderBuilder instead of bindingsBindings.)

Bill