ibm.techexplorer.dom
Class TEDOMImplementation

java.lang.Object
  |
  +--ibm.techexplorer.dom.TEDOMImplementation
All Implemented Interfaces:
DOMImplementation

public class TEDOMImplementation
extends java.lang.Object
implements DOMImplementation

Description

See Also:
techexplorer, org.w3c.dom

Constructor Summary
TEDOMImplementation(techexplorer teobject, int node)
           
 
Method Summary
 boolean hasFeature(java.lang.String feature, java.lang.String version)
          Test if the DOM implementation implements a specific feature.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

TEDOMImplementation

public TEDOMImplementation(techexplorer teobject,
                           int node)
Method Detail

hasFeature

public boolean hasFeature(java.lang.String feature,
                          java.lang.String version)
Description copied from interface: DOMImplementation
Test if the DOM implementation implements a specific feature.
Specified by:
hasFeature in interface DOMImplementation
Following copied from interface: org.w3c.dom.DOMImplementation
Parameters:
feature - The package name of the feature to test. In Level 1, the legal values are "HTML" and "XML" (case-insensitive).
version - This is the version number of the package name to test. In Level 1, this is the string "1.0". If the version is not specified, supporting any version of the feature will cause the method to return true.
Returns:
true if the feature is implemented in the specified version, false otherwise.