Top Description Constructors Methods
com.sun.org.apache.xerces.internal.dom

public Class DOMXSImplementationSourceImpl

extends DOMImplementationSourceImpl
Class Inheritance
Imports
com.sun.org.apache.xerces.internal.impl.xs.XSImplementationImpl, java.util.ArrayList, .List, org.w3c.dom.DOMImplementation, .DOMImplementationList

Allows to retrieve XSImplementation, DOM Level 3 Core and LS implementations and PSVI implementation.

See also the Document Object Model (DOM) Level 3 Core Specification.

Author
Elena Litani, IBM

Constructor Summary

AccessConstructor and Description
public

Method Summary

Modifier and TypeMethod and Description
public DOMImplementation

Returns:

An implementation that has the desired features, or null if this source has none.
getDOMImplementation
(String
A string that specifies which features are required. This is a space separated list in which each feature is specified by its name optionally followed by a space and a version number. This is something like: "XML 1.0 Traversal Events 2.0"
features
)

Overrides com.sun.org.apache.xerces.internal.dom.DOMImplementationSourceImpl.getDOMImplementation.

Implements org.w3c.dom.DOMImplementationSource.getDOMImplementation.

A method to request a DOM implementation.
public DOMImplementationList

Returns:

A list of DOM implementations that support the desired features.
getDOMImplementationList
(String
A string that specifies which features and versions are required. This is a space separated list in which each feature is specified by its name optionally followed by a space and a version number. This is something like: "XML 3.0 Traversal +Events 2.0"
features
)

Overrides com.sun.org.apache.xerces.internal.dom.DOMImplementationSourceImpl.getDOMImplementationList.

Implements org.w3c.dom.DOMImplementationSource.getDOMImplementationList.

A method to request a list of DOM implementations that support the specified features and versions, as specified in .
Inherited from com.sun.org.apache.xerces.internal.dom.DOMImplementationSourceImpl:
testImpl

Constructor Detail

DOMXSImplementationSourceImplback to summary
public DOMXSImplementationSourceImpl()

Method Detail

getDOMImplementationback to summary
public DOMImplementation getDOMImplementation(String features)

Overrides com.sun.org.apache.xerces.internal.dom.DOMImplementationSourceImpl.getDOMImplementation.

Implements org.w3c.dom.DOMImplementationSource.getDOMImplementation.

A method to request a DOM implementation.

Parameters
features:String

A string that specifies which features are required. This is a space separated list in which each feature is specified by its name optionally followed by a space and a version number. This is something like: "XML 1.0 Traversal Events 2.0"

Returns:DOMImplementation

An implementation that has the desired features, or null if this source has none.

getDOMImplementationListback to summary
public DOMImplementationList getDOMImplementationList(String features)

Overrides com.sun.org.apache.xerces.internal.dom.DOMImplementationSourceImpl.getDOMImplementationList.

Implements org.w3c.dom.DOMImplementationSource.getDOMImplementationList.

A method to request a list of DOM implementations that support the specified features and versions, as specified in .

Parameters
features:String

A string that specifies which features and versions are required. This is a space separated list in which each feature is specified by its name optionally followed by a space and a version number. This is something like: "XML 3.0 Traversal +Events 2.0"

Returns:DOMImplementationList

A list of DOM implementations that support the desired features.