Uses of Interface
org.attoparser.dom.INode
-
Packages that use INode Package Description org.attoparser.dom Handlers for creating DOM trees as a result of parsing. -
-
Uses of INode in org.attoparser.dom
Subinterfaces of INode in org.attoparser.dom Modifier and Type Interface Description interface
INestableNode
Common interface for all nodes in DOM trees that can have children nodes.Classes in org.attoparser.dom that implement INode Modifier and Type Class Description (package private) class
AbstractNestableNode
(package private) class
AbstractNode
class
CDATASection
CDATA Section node in a DOM tree.class
Comment
Comment node in a DOM tree.class
DocType
DOCTYPE clause node in a DOM tree.class
Document
Root object for a DOM object tree produced by theDOMBuilderMarkupHandler
handler or theIDOMMarkupParser
parser implementations.class
Element
Element node in a DOM tree.class
ProcessingInstruction
Processing Instruction node in a DOM tree.class
Text
Text node in a DOM tree.class
XmlDeclaration
XML Declaration node in a DOM tree.Fields in org.attoparser.dom with type parameters of type INode Modifier and Type Field Description private java.util.List<INode>
AbstractNestableNode. children
Methods in org.attoparser.dom with type parameters of type INode Modifier and Type Method Description <T extends INode>
java.util.List<T>AbstractNestableNode. getChildrenOfType(java.lang.Class<T> type)
<T extends INode>
java.util.List<T>INestableNode. getChildrenOfType(java.lang.Class<T> type)
<T extends INode>
TAbstractNestableNode. getFirstChildOfType(java.lang.Class<T> type)
<T extends INode>
TINestableNode. getFirstChildOfType(java.lang.Class<T> type)
Methods in org.attoparser.dom that return INode Modifier and Type Method Description INode
INode. cloneNode(INestableNode parent)
INode
AbstractNestableNode. getFirstChild()
INode
INestableNode. getFirstChild()
Methods in org.attoparser.dom that return types with arguments of type INode Modifier and Type Method Description java.util.List<INode>
AbstractNestableNode. getChildren()
java.util.List<INode>
INestableNode. getChildren()
Methods in org.attoparser.dom with parameters of type INode Modifier and Type Method Description void
AbstractNestableNode. addChild(INode newChild)
void
INestableNode. addChild(INode newChild)
void
AbstractNestableNode. insertChild(int index, INode newChild)
void
INestableNode. insertChild(int index, INode newChild)
void
AbstractNestableNode. insertChildAfter(INode after, INode newChild)
void
INestableNode. insertChildAfter(INode after, INode newChild)
void
AbstractNestableNode. insertChildBefore(INode before, INode newChild)
void
INestableNode. insertChildBefore(INode before, INode newChild)
void
AbstractNestableNode. removeChild(INode child)
void
INestableNode. removeChild(INode child)
static void
DOMWriter. write(INode node, java.io.Writer writer)
-