313314315316317318319
/* (non-Javadoc) * @see org.apache.axiom.om.OMFactory#createOMDocument() */ public OMDocument createOMDocument() { return new OMDocumentImpl(this); }
320321322323324325326
/* (non-Javadoc) * @see org.apache.axiom.om.OMFactory#createOMDocument(org.apache.axiom.om.OMXMLParserWrapper) */ public OMDocument createOMDocument(OMXMLParserWrapper builder) { return new OMDocumentImpl(builder, this); }
297298299300301302303
/* (non-Javadoc) * @see org.apache.axiom.om.OMFactory#createOMDocument() */ public OMDocument createOMDocument() { return new OMDocumentImpl(); }
304305306307308309310
/* (non-Javadoc) * @see org.apache.axiom.om.OMFactory#createOMDocument(org.apache.axiom.om.OMXMLParserWrapper) */ public OMDocument createOMDocument(OMXMLParserWrapper builder) { return new OMDocumentImpl(builder); }
312313314315316317318
319320321322323324325
340341342343344345346
347348349350351352353
325326327328329330331
332333334335336337338