/* * Copyright (C)2005-2013 Haxe Foundation * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. */ // This file is generated, do not edit! package js.html; @:native("NodeFilter") extern class NodeFilter { /** Value returned by the NodeFilter.acceptNode() method when a node should be accepted. */ static inline var FILTER_ACCEPT : Int = 1; /** 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 inline var FILTER_REJECT : Int = 2; /** 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 inline var FILTER_SKIP : Int = 3; /** Shows all nodes. */ static inline var SHOW_ALL : Int = 0xFFFFFFFF; /** 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 inline var SHOW_ATTRIBUTE : Int = 0x00000002; /** Shows CDATASection  nodes. */ static inline var SHOW_CDATA_SECTION : Int = 0x00000008; /** Shows Comment  nodes. */ static inline var SHOW_COMMENT : Int = 0x00000080; /** Shows Document  nodes. */ static inline var SHOW_DOCUMENT : Int = 0x00000100; /** Shows DocumentFragment  nodes. */ static inline var SHOW_DOCUMENT_FRAGMENT : Int = 0x00000400; /** Shows DocumentType  nodes. */ static inline var SHOW_DOCUMENT_TYPE : Int = 0x00000200; /** Shows Element  nodes. */ static inline var SHOW_ELEMENT : Int = 0x00000001; /** 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 inline var SHOW_ENTITY : Int = 0x00000020; /** Shows EntityReference  nodes. */ static inline var SHOW_ENTITY_REFERENCE : Int = 0x00000010; /** 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 inline var SHOW_NOTATION : Int = 0x00000800; /** Shows ProcessingInstruction  nodes. */ static inline var SHOW_PROCESSING_INSTRUCTION : Int = 0x00000040; /** Shows Text  nodes. */ static inline var SHOW_TEXT : Int = 0x00000004; function acceptNode( n : Node ) : Int; }