org.apache.xerces.dom

Class DOMXSImplementationSourceImpl

Implemented Interfaces:
org.apache.xerces.dom3.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.

Version:
$Id: DOMXSImplementationSourceImpl.java,v 1.1 2003/11/18 23:47:42 elena Exp $

Author:
Elena Litani, IBM

Method Summary

org.w3c.dom.DOMImplementation
getDOMImplementation(String features)
A method to request a DOM implementation.
org.apache.xerces.dom3.DOMImplementationList
getDOMImplementationList(String features)
DOM Level 3 Core - CR A method to request a list of DOM implementations that support the specified features and versions, as specified in .

Methods inherited from class org.apache.xerces.dom.DOMImplementationSourceImpl

getDOMImplementation, getDOMImplementationList

Method Details

getDOMImplementation

public org.w3c.dom.DOMImplementation getDOMImplementation(String features)
A method to request a DOM implementation.
Specified by:
getDOMImplementation in interface org.apache.xerces.dom3.DOMImplementationSource
Overrides:
getDOMImplementation in interface 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.apache.xerces.dom3.DOMImplementationList getDOMImplementationList(String features)
DOM Level 3 Core - CR A method to request a list of DOM implementations that support the specified features and versions, as specified in .
Specified by:
getDOMImplementationList in interface org.apache.xerces.dom3.DOMImplementationSource
Overrides:
getDOMImplementationList in interface 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 B) 1999-2004 Apache XML Project. All Rights Reserved.