Uses of Class
org.attoparser.markup.dom.Node

Packages that use Node
org.attoparser.markup.dom   
 

Uses of Node in org.attoparser.markup.dom
 

Subclasses of Node in org.attoparser.markup.dom
 class CDATASection
           A CDATA Section node in a attoDOM tree.
 class Comment
           A Comment node in a attoDOM tree.
 class DocType
           Models a DOCTYPE clause in a attoDOM Document.
 class Element
           Base abstract class for all nodes in a attoDOM tree which have children.
 class ProcessingInstruction
           A Processing Instruction node in a attoDOM tree.
 class Text
           A Text node in a attoDOM tree.
 class XmlDeclaration
           Models a XML Declaration in a attoDOM Document.
 

Methods in org.attoparser.markup.dom that return Node
 Node Element.getFirstChild()
           Returns the first child of this node.
 

Methods in org.attoparser.markup.dom that return types with arguments of type Node
 List<Node> Element.getChildren()
           Returns the children of this node.
 List<Node> Document.getRootNodes()
           Returns the document root nodes.
 

Methods in org.attoparser.markup.dom with parameters of type Node
 void Element.addChild(Node newChild)
           
 void Element.insertChild(int index, Node newChild)
           
 void Element.insertChildAfter(Node after, Node newChild)
           
 void Element.insertChildBefore(Node before, Node newChild)
           
 void Element.removeChild(Node child)
           
 



Copyright © 2012 The ATTOPARSER team. All Rights Reserved.