org.apache.xerces.dom
Class ASDOMImplementationImpl
- DOMImplementation, org.apache.xerces.dom3.as.DOMImplementationAS, DOMImplementationLS
public class ASDOMImplementationImpl
implements org.apache.xerces.dom3.as.DOMImplementationAS
The DOMImplementation class is description of a particular
implementation of the Document Object Model. As such its data is
static, shared by all instances of this implementation.
The DOM API requires that it be a real object rather than static
methods. However, there's nothing that says it can't be a singleton,
so that's how I've implemented it.
This particular class, along with DocumentImpl, supports the DOM
Core, DOM Level 2 optional mofules, and Abstract Schemas (Experimental).
$Id: ASDOMImplementationImpl.java 447266 2006-09-18 05:57:49Z mrglavas $ org.apache.xerces.dom3.as.ASModel | createAS(boolean isNamespaceAware)- DOM Level 3 WD - Experimental.
|
org.apache.xerces.dom3.as.DOMASBuilder | createDOMASBuilder()- DOM Level 3 WD - Experimental.
|
org.apache.xerces.dom3.as.DOMASWriter | createDOMASWriter()- DOM Level 3 WD - Experimental.
|
static DOMImplementation | getDOMImplementation()- NON-DOM: Obtain and return the single shared object
|
assignDocTypeNumber, assignDocumentNumber, createDocument, createDocumentType, createLSInput, createLSOutput, createLSParser, createLSSerializer, getDOMImplementation, getFeature, hasFeature |
createAS
public org.apache.xerces.dom3.as.ASModel createAS(boolean isNamespaceAware)
DOM Level 3 WD - Experimental.
Creates an ASModel.
- createAS in interface org.apache.xerces.dom3.as.DOMImplementationAS
isNamespaceAware - Allow creation of ASModel with
this attribute set to a specific value.
- A
null return indicates failure.what is a
failure? Could be a system error.
createDOMASBuilder
public org.apache.xerces.dom3.as.DOMASBuilder createDOMASBuilder()
DOM Level 3 WD - Experimental.
Creates an DOMASBuilder.Do we need the method since we
already have DOMImplementationLS.createDOMParser?
- createDOMASBuilder in interface org.apache.xerces.dom3.as.DOMImplementationAS
createDOMASWriter
public org.apache.xerces.dom3.as.DOMASWriter createDOMASWriter()
DOM Level 3 WD - Experimental.
Creates an DOMASWriter.
- createDOMASWriter in interface org.apache.xerces.dom3.as.DOMImplementationAS
Copyright B) 1999-2007 The Apache Software Foundation. All Rights Reserved.