org.apache.xerces.dom
Class DOMXSImplementationSourceImpl
java.lang.Object
|
+--org.apache.xerces.dom.DOMImplementationSourceImpl
|
+--org.apache.xerces.dom.DOMXSImplementationSourceImpl
- All Implemented Interfaces:
- org.w3c.dom.DOMImplementationSource
- public class DOMXSImplementationSourceImpl
- extends DOMImplementationSourceImpl
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.
INTERNAL:
- Usage of this class is not supported. It may be altered or removed at any time.
- Version:
- $Id: DOMXSImplementationSourceImpl.java,v 1.5 2005/05/02 22:02:22 mrglavas Exp $
- Author:
- Elena Litani, IBM
Method Summary |
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 . |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
DOMXSImplementationSourceImpl
public DOMXSImplementationSourceImpl()
getDOMImplementation
public org.w3c.dom.DOMImplementation getDOMImplementation(java.lang.String features)
- A method to request a DOM implementation.
- Overrides:
getDOMImplementation
in class DOMImplementationSourceImpl
- 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 .
- Overrides:
getDOMImplementationList
in class DOMImplementationSourceImpl
- 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.
Copyright © 1999-2005 Apache XML Project. All Rights Reserved.