Not documented.

Inheritance
Annotations
  • DocsEditable()
  • DomName('Comment')

Properties

baseUri String
read-only, inherited

childNodes List<Node>
read-only, inherited

A list of this node's children.

data String
read / write, inherited

firstChild Node
read-only, inherited

The first child of this node.

lastChild Node
read-only, inherited

The last child of this node.

length int
read-only, inherited

nextElementSibling Element
read-only, inherited

nextNode Node
read-only, inherited

The next sibling node.

nodeName String
read-only, inherited

The name of this node.

nodes List<Node>
read / write, inherited

A modifiable list of this node's children.

nodeType int
read-only, inherited

The type of node.

nodeValue String
read-only, inherited

The value of this node.

on Events
read-only, inherited

This is an ease-of-use accessor for event streams which should only be used when an explicit accessor is not available.

ownerDocument Document
read-only, inherited

The document this node belongs to.

parent Element
read-only, inherited

The parent element of this node.

parentNode Node
read-only, inherited

The parent node of this node.

previousElementSibling Element
read-only, inherited

previousNode Node
read-only, inherited

The previous sibling node.

text String
read / write, inherited

All text within this node and its decendents.

Constructors

Comment([String data])

Methods

addEventListener(String type, dynamic listener(Event event), [bool useCapture]) → void
inherited

append(Node newChild) → Node
inherited

Adds a node to the end of the child nodes list of this node.

appendData(String data) → void
inherited

clone(bool deep) → Node
inherited

Returns a copy of this node.

contains(Node other) → bool
inherited

Returns true if this node contains the specified node.

deleteData(int offset, int length) → void
inherited

dispatchEvent(Event event) → bool
inherited

hasChildNodes() → bool
inherited

Returns true if this node has any children.

insertAllBefore(Iterable<Node> newNodes, Node refChild) → Node
inherited

Inserts all of the nodes into this node directly before refChild.

insertBefore(Node newChild, Node refChild) → Node
inherited

Inserts all of the nodes into this node directly before refChild.

insertData(int offset, String data) → void
inherited

remove() → void
inherited

Removes this node from the DOM.

removeEventListener(String type, dynamic listener(Event event), [bool useCapture]) → void
inherited

replaceData(int offset, int length, String data) → void
inherited

replaceWith(Node otherNode) → Node
inherited

Replaces this node with another node.

substringData(int offset, int length) → String
inherited

toString() → String
inherited

Print out a String representation of this Node.