Class DOMImplementationSourceImpl
java.lang.Object
org.loboevolution.html.dom.domimpl.DOMImplementationSourceImpl
- All Implemented Interfaces:
DOMImplementationSource
DOMImplementationSourceImpl class.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptiongetDOMImplementation
(String features) A method to request a DOM implementation.getDOMImplementationList
(String features) A method to request a list of DOM implementations that support the specified features and versions, as specified in .
-
Constructor Details
-
DOMImplementationSourceImpl
public DOMImplementationSourceImpl()
-
-
Method Details
-
getDOMImplementation
A method to request a DOM implementation.- Specified by:
getDOMImplementation
in interfaceDOMImplementationSource
- 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
A method to request a list of DOM implementations that support the specified features and versions, as specified in .- Specified by:
getDOMImplementationList
in interfaceDOMImplementationSource
- 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.
-