Package org.apache.xerces.dom
Class DOMImplementationSourceImpl
- java.lang.Object
-
- org.apache.xerces.dom.DOMImplementationSourceImpl
-
- All Implemented Interfaces:
org.w3c.dom.DOMImplementationSource
- Direct Known Subclasses:
DOMXSImplementationSourceImpl
public class DOMImplementationSourceImpl extends java.lang.Object implements org.w3c.dom.DOMImplementationSource
Supply one the right implementation, based upon requested features. Each implementedDOMImplementationSource
object is listed in the binding-specific list of available sources so that itsDOMImplementation
objects are made available.See also the Document Object Model (DOM) Level 3 Core Specification.
INTERNAL:
- Usage of this class is not supported. It may be altered or removed at any time.
- Version:
- $Id: DOMImplementationSourceImpl.java 603686 2007-12-12 17:51:23Z mrglavas $
-
-
Constructor Summary
Constructors Constructor Description DOMImplementationSourceImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.w3c.dom.DOMImplementation
getDOMImplementation(java.lang.String features)
A method to request a DOM implementation.org.w3c.dom.DOMImplementationList
getDOMImplementationList(java.lang.String features)
A method to request a list of DOM implementations that support the specified features and versions, as specified in .
-
-
-
Method Detail
-
getDOMImplementation
public org.w3c.dom.DOMImplementation getDOMImplementation(java.lang.String features)
A method to request a DOM implementation.- Specified by:
getDOMImplementation
in interfaceorg.w3c.dom.DOMImplementationSource
- Parameters:
features
- 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:
- An implementation that has the desired features, or
null
if this source has none.
-
getDOMImplementationList
public org.w3c.dom.DOMImplementationList getDOMImplementationList(java.lang.String features)
A method to request a list of DOM implementations that support the specified features and versions, as specified in .- Specified by:
getDOMImplementationList
in interfaceorg.w3c.dom.DOMImplementationSource
- Parameters:
features
- 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:
- A list of DOM implementations that support the desired features.
-
-