| java.lang.Object org.apache.xerces.dom.DOMImplementationSourceImpl org.apache.xerces.dom.DOMXSImplementationSourceImpl
Method Summary | |
public DOMImplementation | getDOMImplementation(String features) A method to request a DOM implementation.
Parameters: features - A string that specifies which features are required. | public DOMImplementationList | getDOMImplementationList(String features) A method to request a list of DOM implementations that support the
specified features and versions, as specified in .
Parameters: features - A string that specifies which features and versions are required. |
getDOMImplementation | public DOMImplementation getDOMImplementation(String features)(Code) | | A method to request a DOM implementation.
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" An implementation that has the desired features, or null if this source has none. |
getDOMImplementationList | public DOMImplementationList getDOMImplementationList(String features)(Code) | | A method to request a list of DOM implementations that support the
specified features and versions, as specified in .
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" A list of DOM implementations that support the desired features. |
|
|