class js.html.NodeFilter

Available on js

Class Fields

static var FILTER_ACCEPT:Int

Value returned by the NodeFilter.acceptNode() method when a node should be accepted.

static var FILTER_REJECT:Int

Value to be returned by the NodeFilter.acceptNode() method when a node should be rejected. The children of rejected nodes are not visited by the NodeIterator or TreeWalker object; this value is treated as "skip this node and all its children".

static var FILTER_SKIP:Int

Value to be returned by NodeFilter.acceptNode() for nodes to be skipped by the NodeIterator or TreeWalker object. The children of skipped nodes are still considered. This is treated as "skip this node but not its children".

static var SHOW_ALL:Int

Shows all nodes.

static var SHOW_ATTRIBUTE:Int

Shows attribute Attr nodes. This is meaningful only when creating a NodeIterator or TreeWalker with an Attr node as its root; in this case, it means that the attribute node will appear in the first position of the iteration or traversal. Since attributes are never children of other nodes, they do not appear when traversing over the document tree.

static var SHOW_CDATA_SECTION:Int

Shows CDATASection  nodes.

static var SHOW_COMMENT:Int

Shows Comment  nodes.

static var SHOW_DOCUMENT:Int

Shows Document  nodes.

static var SHOW_DOCUMENT_TYPE:Int

Shows DocumentType  nodes.

static var SHOW_ELEMENT:Int

Shows Element  nodes.

static var SHOW_ENTITY:Int

Shows Entity  nodes. This is meaningful only when creating a NodeIterator or TreeWalker with an Entity node as its root; in this case, it means that the Entity node will appear in the first position of the traversal. Since entities are not part of the document tree, they do not appear when traversing over the document tree.

static var SHOW_ENTITY_REFERENCE:Int

Shows EntityReference  nodes.

static var SHOW_NOTATION:Int

Shows Notation nodes. This is meaningful only when creating a NodeIterator or TreeWalker with a Notation node as its root; in this case, it means that the Notation node will appear in the first position of the traversal. Since entities are not part of the document tree, they do not appear when traversing over the document tree.

static var SHOW_TEXT:Int

Shows Text  nodes.

Instance Fields

function acceptNode(n:Node):Int