org.w3c.dom.fi
Interface NodeEx

All Known Implementing Classes:
org.openxml.dom.NodeImpl

public abstract interface NodeEx
extends Node


Field Summary
static int TW_ALL
          Iterator should return all nodes.
static int TW_COMMENT
          Iterator should return text nodes.
static int TW_DEFAULT
          Iterator should return only elements and text nodes.
static int TW_ELEMENT
          Iterator should return element nodes.
static int TW_ENTITYREF
          Iterator should return entity reference nodes.
static int TW_PI
          Iterator should return processing instruction nodes.
static int TW_TEXT
          Iterator should return text and CDATA section nodes.
 
Fields inherited from class org.w3c.dom.Node
ATTRIBUTE_NODE, CDATA_SECTION_NODE, COMMENT_NODE, DOCUMENT_FRAGMENT_NODE, DOCUMENT_NODE, DOCUMENT_TYPE_NODE, ELEMENT_NODE, ENTITY_NODE, ENTITY_REFERENCE_NODE, NOTATION_NODE, PROCESSING_INSTRUCTION_NODE, TEXT_NODE
 
Method Summary
 NodeIterator createTreeIterator(int whatToShow, NodeFilter nodeFilter)
           
 
Methods inherited from interface org.w3c.dom.Node
appendChild, cloneNode, getAttributes, getChildNodes, getFirstChild, getLastChild, getNextSibling, getNodeName, getNodeType, getNodeValue, getOwnerDocument, getParentNode, getPreviousSibling, hasChildNodes, insertBefore, removeChild, replaceChild, setNodeValue
 

Field Detail

TW_DEFAULT

public static final int TW_DEFAULT
Iterator should return only elements and text nodes.

TW_ALL

public static final int TW_ALL
Iterator should return all nodes.

TW_ELEMENT

public static final int TW_ELEMENT
Iterator should return element nodes.

TW_TEXT

public static final int TW_TEXT
Iterator should return text and CDATA section nodes.

TW_ENTITYREF

public static final int TW_ENTITYREF
Iterator should return entity reference nodes.

TW_PI

public static final int TW_PI
Iterator should return processing instruction nodes.

TW_COMMENT

public static final int TW_COMMENT
Iterator should return text nodes.
Method Detail

createTreeIterator

public NodeIterator createTreeIterator(int whatToShow,
                                       NodeFilter nodeFilter)