Stay organized with collections
Save and categorize content based on your preferences.
DOMImplementationSource
public
interface
DOMImplementationSource
org.w3c.dom.DOMImplementationSource
|
This interface permits a DOM implementer to supply one or more
implementations, based upon requested features and versions, as specified
in . Each implemented DOMImplementationSource
object is
listed in the binding-specific list of available sources so that its
DOMImplementation
objects are made available.
See also the Document Object Model (DOM) Level 3 Core Specification.
Summary
Public methods
getDOMImplementation
public abstract DOMImplementation getDOMImplementation (String features)
A method to request the first DOM implementation that supports the
specified features.
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 method returns the first item of the list
returned by getDOMImplementationList . As an example,
the string "XML 3.0 Traversal +Events 2.0" will
request a DOM implementation that supports the module "XML" for its
3.0 version, a module that support of the "Traversal" module for
any version, and the module "Events" for its 2.0 version. The
module "Events" must be accessible using the method
Node.getFeature() and
DOMImplementation.getFeature() . |
Returns |
DOMImplementation |
The first DOM implementation that support the desired
features, or null if this source has none. |
getDOMImplementationList
public abstract 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 |
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" |
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2025-02-10 UTC.
[null,null,["Last updated 2025-02-10 UTC."],[],[],null,["# DOMImplementationSource\n\nAdded in [API level 8](/guide/topics/manifest/uses-sdk-element#ApiLevels) \n\nDOMImplementationSource\n=======================\n\n\n`\npublic\n\n\ninterface\nDOMImplementationSource\n`\n\n\n`\n\n\n`\n\n|-------------------------------------|\n| org.w3c.dom.DOMImplementationSource |\n\n\u003cbr /\u003e\n\n*** ** * ** ***\n\nThis interface permits a DOM implementer to supply one or more\nimplementations, based upon requested features and versions, as specified\nin . Each implemented `DOMImplementationSource` object is\nlisted in the binding-specific list of available sources so that its\n`DOMImplementation` objects are made available.\n\nSee also the [Document Object Model (DOM) Level 3 Core Specification](http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407).\n\nSummary\n-------\n\n| ### Public methods ||\n|-----------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ` abstract `[DOMImplementation](/reference/org/w3c/dom/DOMImplementation) | ` `[getDOMImplementation](/reference/org/w3c/dom/DOMImplementationSource#getDOMImplementation(java.lang.String))`(`[String](/reference/java/lang/String)` features) ` A method to request the first DOM implementation that supports the specified features. |\n| ` abstract `[DOMImplementationList](/reference/org/w3c/dom/DOMImplementationList) | ` `[getDOMImplementationList](/reference/org/w3c/dom/DOMImplementationSource#getDOMImplementationList(java.lang.String))`(`[String](/reference/java/lang/String)` features) ` A method to request a list of DOM implementations that support the specified features and versions, as specified in . |\n\nPublic methods\n--------------\n\n### getDOMImplementation\n\nAdded in [API level 8](/guide/topics/manifest/uses-sdk-element#ApiLevels) \n\n```\npublic abstract DOMImplementation getDOMImplementation (String features)\n```\n\nA method to request the first DOM implementation that supports the\nspecified features.\n\n\u003cbr /\u003e\n\n| Parameters ||\n|------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `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 method returns the first item of the list returned by `getDOMImplementationList`. As an example, the string `\"XML 3.0 Traversal +Events 2.0\"` will request a DOM implementation that supports the module \"XML\" for its 3.0 version, a module that support of the \"Traversal\" module for any version, and the module \"Events\" for its 2.0 version. The module \"Events\" must be accessible using the method `Node.getFeature()` and `DOMImplementation.getFeature()`. \u003cbr /\u003e |\n\n| Returns ||\n|---------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------|\n| [DOMImplementation](/reference/org/w3c/dom/DOMImplementation) | The first DOM implementation that support the desired features, or `null` if this source has none. \u003cbr /\u003e |\n\n### getDOMImplementationList\n\nAdded in [API level 8](/guide/topics/manifest/uses-sdk-element#ApiLevels) \n\n```\npublic abstract DOMImplementationList getDOMImplementationList (String features)\n```\n\nA method to request a list of DOM implementations that support the\nspecified features and versions, as specified in .\n\n\u003cbr /\u003e\n\n| Parameters ||\n|------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `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\" \u003cbr /\u003e |\n\n| Returns ||\n|-----------------------------------------------------------------------|-------------------------------------------------------------------------|\n| [DOMImplementationList](/reference/org/w3c/dom/DOMImplementationList) | A list of DOM implementations that support the desired features. \u003cbr /\u003e |"]]