Uses of Class
com.gargoylesoftware.htmlunit.javascript.host.Node

Packages that use Node
com.gargoylesoftware.htmlunit.javascript Classes in this package are specific to the JavaScript engine - users of HtmlUnit shouldn't need anything in this package. 
com.gargoylesoftware.htmlunit.javascript.host Implementations of the various JavaScript host objects - users of HtmlUnit shouldn't need anything in this package. 
com.gargoylesoftware.htmlunit.javascript.host.html Implementations of the HTML JavaScript host objects - users of HtmlUnit shouldn't need anything in this package. 
com.gargoylesoftware.htmlunit.javascript.host.xml Implementations of the XML JavaScript host objects - users of HtmlUnit shouldn't need anything in this package. 
 

Uses of Node in com.gargoylesoftware.htmlunit.javascript
 

Methods in com.gargoylesoftware.htmlunit.javascript with parameters of type Node
 void NamedNodeMap.jsxFunction_setNamedItem(Node node)
          Sets the specified attribute.
 

Uses of Node in com.gargoylesoftware.htmlunit.javascript.host
 

Subclasses of Node in com.gargoylesoftware.htmlunit.javascript.host
 class Attr
          A JavaScript object for an Attribute.
 class CDATASection
          A JavaScript object for CDATASection.
 class CharacterDataImpl
          A JavaScript object for CharacterData.
 class Comment
          A JavaScript object for a Comment.
 class Document
          A JavaScript object for a Document.
 class DocumentFragment
          A JavaScript object for DocumentFragment.
 class DocumentType
          A JavaScript object for a DocumentType.
 class Element
          A JavaScript object for DomElement.
 class EventNode
          A node which supports all of the onXXX event handlers and other event-related functions.
 class FormChild
          Base class for elements which have a parent form.
 class FormField
          Base class for all JavaScript object corresponding to form fields.
 class ProcessingInstruction
          A JavaScript object for a ProcessingInstruction.
 class RowContainer
          Superclass for all row-containing JavaScript host classes, including tables, table headers, table bodies and table footers.
 class Text
          A JavaScript object for Text.
 

Methods in com.gargoylesoftware.htmlunit.javascript.host that return Node
protected  Node Node.getJavaScriptNode(DomNode domNode)
          Gets the JavaScript node for a given DomNode.
 Node Node.getParent()
          Returns this node's parent node.
 Node TreeWalker.jsxFunction_firstChild()
          Moves the TreeWalker to the first visible child of the current node, and returns the new node.
 Node StaticNodeList.jsxFunction_item(int index)
          Returns the item or items corresponding to the specified index or key.
 Node XPathResult.jsxFunction_iterateNext()
          Iterates and returns the next node from the node set or null if there are no more nodes.
 Node TreeWalker.jsxFunction_lastChild()
          Moves the TreeWalker to the last visible child of the current node, and returns the new node.
 Node TreeWalker.jsxFunction_nextNode()
          Moves the TreeWalker to the next visible node in document order relative to the current node, and returns the new node.
 Node TreeWalker.jsxFunction_nextSibling()
          Moves the TreeWalker to the next sibling of the current node, and returns the new node.
 Node TreeWalker.jsxFunction_parentNode()
          Moves to and returns the closest visible ancestor node of the current node.
 Node TreeWalker.jsxFunction_previousNode()
          Moves the TreeWalker to the previous visible node in document order relative to the current node, and returns the new node.
 Node TreeWalker.jsxFunction_previousSibling()
          Moves the TreeWalker to the previous sibling of the current node, and returns the new node.
 Node XPathResult.jsxFunction_snapshotItem(int index)
          Returns the indexth item in the snapshot collection.
 Node Selection.jsxGet_anchorNode()
          Returns the node in which the selection begins.
 Node TreeWalker.jsxGet_currentNode()
          Gets the node at which the TreeWalker is currently positioned.
 Node Node.jsxGet_firstChild()
          Gets the JavaScript property "firstChild" for the node that contains the current node.
 Node Attr.jsxGet_firstChild()
          Gets the JavaScript property "firstChild" for the node that contains the current node.
 Node Selection.jsxGet_focusNode()
          Returns the node in which the selection ends.
 Node XSLTProcessor.jsxGet_input()
          Returns which XML input tree to transform.
 Node Node.jsxGet_lastChild()
          Gets the JavaScript property "lastChild" for the node that contains the current node.
 Node Attr.jsxGet_lastChild()
          Gets the JavaScript property "lastChild" for the node that contains the current node.
 Node Node.jsxGet_nextSibling()
          Gets the JavaScript property "nextSibling" for the node that contains the current node.
 Node Attr.jsxGet_parentNode()
          Gets the JavaScript property "parentNode" for the node that contains the current node.
 Node Node.jsxGet_previousSibling()
          Gets the JavaScript property "previousSibling" for the node that contains the current node.
 Node TreeWalker.jsxGet_root()
          Gets the root node of the TreeWalker, as specified when it was created.
 Node XPathResult.jsxGet_singleNodeValue()
          The value of this single node result, which may be null.
 Node XSLTemplate.jsxGet_stylesheet()
          Returns the Extensible Stylesheet Language (XSL) style sheet to compile into an XSL template.
 

Methods in com.gargoylesoftware.htmlunit.javascript.host with parameters of type Node
 short NodeFilter.acceptNode(Node n)
          Test whether a specified node is visible in the logical view of a TreeWalker.
 void Selection.jsxFunction_collapse(Node parentNode, int offset)
          Collapses the current selection to a single point.
 short Node.jsxFunction_compareDocumentPosition(Node node)
          Compares the positions of this node and the provided node within the document.
 XPathNSResolver Document.jsxFunction_createNSResolver(Node nodeResolver)
          Adapts any DOM node to resolve namespaces so that an XPath expression can be easily evaluated relative to the context of the node where it appeared within the document.
 XPathResult Document.jsxFunction_evaluate(String expression, Node contextNode, Object resolver, int type, Object result)
          Evaluates an XPath expression string and returns a result of the specified type if possible.
 void Selection.jsxFunction_extend(Node parentNode, int offset)
          Moves the focus of the selection to a specified point.
 Object Document.jsxFunction_importNode(Node importedNode, boolean deep)
          Imports a node from another document to this document.
 void XSLTProcessor.jsxFunction_importStylesheet(Node style)
          Imports the specified stylesheet into this XSLTProcessor for transformations.
 void Selection.jsxFunction_selectAllChildren(Node parentNode)
          Adds all the children of the specified node to the selection.
 void Range.jsxFunction_selectNode(Node refNode)
          Selects a node and its contents.
 void Range.jsxFunction_selectNodeContents(Node refNode)
          Select the contents within a node.
 void Range.jsxFunction_setEnd(Node refNode, int offset)
          Sets the attributes describing the end of a Range.
 void Range.jsxFunction_setEndAfter(Node refNode)
          Sets the end of the range to be after the node.
 void Range.jsxFunction_setEndBefore(Node refNode)
          Sets the end of the range to be before the node.
 void Range.jsxFunction_setStart(Node refNode, int offset)
          Sets the attributes describing the start of a Range.
 void Range.jsxFunction_setStartAfter(Node refNode)
          Sets the start of the range to be after the node.
 void Range.jsxFunction_setStartBefore(Node refNode)
          Sets the start of the range to be before the node.
 XMLDocument XSLTProcessor.jsxFunction_transformToDocument(Node source)
          Transforms the node source applying the stylesheet given by the importStylesheet() function.
 DocumentFragment XSLTProcessor.jsxFunction_transformToFragment(Node source, Object output)
          Transforms the node source applying the stylesheet given by the importStylesheet() function.
 void TreeWalker.jsxSet_currentNode(Node currentNode)
          Sets the node at which the TreeWalker is currently positioned.
 void XSLTProcessor.jsxSet_input(Node input)
          Specifies which XML input tree to transform.
 void XSLTemplate.jsxSet_stylesheet(Node node)
          Sets the Extensible Stylesheet Language (XSL) style sheet to compile into an XSL template.
 void XPathNSResolver.setElement(Node element)
          Sets the element to start lookup from.
 

Constructors in com.gargoylesoftware.htmlunit.javascript.host with parameters of type Node
TreeWalker(Node root, int whatToShow, NodeFilter filter, Boolean expandEntityReferences)
          Creates an instance.
 

Constructor parameters in com.gargoylesoftware.htmlunit.javascript.host with type arguments of type Node
StaticNodeList(List<Node> elements, net.sourceforge.htmlunit.corejs.javascript.ScriptableObject parentScope)
          Constructor.
 

Uses of Node in com.gargoylesoftware.htmlunit.javascript.host.html
 

Subclasses of Node in com.gargoylesoftware.htmlunit.javascript.host.html
 class HTMLAnchorElement
          The JavaScript object that represents an anchor.
 class HTMLAppletElement
          The JavaScript object "HTMLAppletElement".
 class HTMLAreaElement
          The JavaScript object "HTMLAreaElement".
 class HTMLAudioElement
          The JavaScript object "HTMLAudioElement".
 class HTMLBaseElement
          The JavaScript object "HTMLBaseElement".
 class HTMLBaseFontElement
          The JavaScript object "HTMLBaseFontElement".
 class HTMLBodyElement
          The JavaScript object "HTMLBodyElement".
 class HTMLBRElement
          The JavaScript object "HTMLBRElement".
 class HTMLButtonElement
          The JavaScript object that represents a HtmlButton (<button type=...>).
 class HTMLCanvasElement
          A JavaScript object for HtmlCanvas.
 class HTMLDelElement
          The JavaScript object "HTMLDelElement".
 class HTMLDirectoryElement
          The JavaScript object "HTMLDirectoryElement".
 class HTMLDivElement
          The JavaScript object "HTMLDivElement".
 class HTMLDListElement
          The JavaScript object "HTMLDListElement".
 class HTMLDocument
          A JavaScript object for a Document.
 class HTMLElement
          The JavaScript object "HTMLElement" which is the base class for all HTML objects.
 class HTMLEmbedElement
          A JavaScript object for HtmlEmbed.
 class HTMLFieldSetElement
          The JavaScript object "HTMLFieldSetElement".
 class HTMLFontElement
          The JavaScript object "HTMLFontElement".
 class HTMLFormElement
          A JavaScript object for a Form.
 class HTMLFrameElement
          A JavaScript object for a HtmlFrame.
 class HTMLFrameSetElement
          Wrapper for the HTML element "frameset".
 class HTMLHeadElement
          The JavaScript object "HTMLHeadElement".
 class HTMLHeadingElement
          The JavaScript object "HTMLHeadingElement".
 class HTMLHRElement
          The JavaScript object "HTMLHRElement".
 class HTMLHtmlElement
          The JavaScript object "HTMLHtmlElement".
 class HTMLIFrameElement
          A JavaScript object for HtmlInlineFrame.
 class HTMLImageElement
          The JavaScript object that represents an "Image".
 class HTMLInputElement
          The JavaScript object for form input elements (html tag <input ...>).
 class HTMLInsElement
          The JavaScript object "HTMLInsElement".
 class HTMLIsIndexElement
          The JavaScript object "HTMLIsIndexElement".
 class HTMLLabelElement
          A JavaScript object for a Label.
 class HTMLLegendElement
          The JavaScript object "HTMLLegendElement".
 class HTMLLIElement
          The JavaScript object "HTMLLIElement".
 class HTMLLinkElement
          The JavaScript object "HTMLLinkElement".
 class HTMLListElement
          Base class for list-type elements (ul, ol, dir, etc).
 class HTMLMapElement
          The JavaScript object "HTMLMapElement".
 class HTMLMenuElement
          The JavaScript object "HTMLMenuElement".
 class HTMLMetaElement
          The JavaScript object "HTMLMetaElement".
 class HTMLObjectElement
          The JavaScript object "HTMLObjectElement".
 class HTMLOListElement
          The JavaScript object "HTMLOListElement".
 class HTMLOptGroupElement
          The JavaScript object "HTMLOptGroupElement".
 class HTMLOptionElement
          The JavaScript object that represents an option.
 class HTMLParagraphElement
          The JavaScript object "HTMLParagraphElement".
 class HTMLParamElement
          The JavaScript object "HTMLParamElement".
 class HTMLPreElement
          The JavaScript object "HTMLPreElement".
 class HTMLQuoteElement
          The JavaScript object "HTMLQuoteElement".
 class HTMLScriptElement
          The JavaScript object that represents an "HTMLScriptElement".
 class HTMLSelectElement
          The JavaScript object for HtmlSelect.
 class HTMLSourceElement
          The JavaScript object "HTMLSourceElement".
 class HTMLSpacerElement
          The JavaScript object "HTMLSpacerElement".
 class HTMLSpanElement
          The JavaScript object "HTMLSpanElement".
 class HTMLStyleElement
          The JavaScript object "HTMLStyleElement".
 class HTMLTableCaptionElement
          The JavaScript object "HTMLTableCaptionElement".
 class HTMLTableCellElement
          The JavaScript object representing a TD or TH.
 class HTMLTableColElement
          The JavaScript object "HTMLTableColElement".
 class HTMLTableComponent
          Contains attributes common to various table components.
 class HTMLTableElement
          A JavaScript object representing a Table.
 class HTMLTableRowElement
          A JavaScript object representing a TR.
 class HTMLTableSectionElement
          A JavaScript object representing "HTMLTableSectionElement", it is used by HtmlTableBody, HtmlTableHeader, and HtmlTableFooter.
 class HTMLTextAreaElement
          The JavaScript object that represents a textarea.
 class HTMLTitleElement
          The JavaScript object "HTMLTitleElement".
 class HTMLUListElement
          The JavaScript object "HTMLUListElement".
 class HTMLUnknownElement
          The JavaScript object "HTMLUnknownElement".
 class HTMLVideoElement
          The JavaScript object "HTMLVideoElement".
 class HTMLWBRElement
          A JavaScript object for HtmlWordBreak.
 

Methods in com.gargoylesoftware.htmlunit.javascript.host.html that return Node
 Node HTMLDocument.jsxFunction_querySelector(String selectors)
          Returns the first element within the document that matches the specified group of selectors.
 

Methods in com.gargoylesoftware.htmlunit.javascript.host.html with parameters of type Node
 Object HTMLDocument.jsxFunction_createTreeWalker(Node root, int whatToShow, net.sourceforge.htmlunit.corejs.javascript.Scriptable filter, boolean expandEntityReferences)
          Creates and returns a new TreeWalker.
 

Uses of Node in com.gargoylesoftware.htmlunit.javascript.host.xml
 

Subclasses of Node in com.gargoylesoftware.htmlunit.javascript.host.xml
 class XMLAttr
          A JavaScript object for an Attribute of XMLElement.
 class XMLDocument
          A JavaScript object for XMLDocument.
 

Methods in com.gargoylesoftware.htmlunit.javascript.host.xml with parameters of type Node
 String XMLSerializer.jsxFunction_serializeToString(Node root)
          The subtree rooted by the specified element is serialized to a string.
 



Copyright © 2002-2011 Gargoyle Software Inc.. All Rights Reserved.