Uses of Interface
org.attoparser.markup.dom.INode

Packages that use INode
org.attoparser.markup.dom   
org.attoparser.markup.dom.impl   
 

Uses of INode in org.attoparser.markup.dom
 

Subinterfaces of INode in org.attoparser.markup.dom
 interface IAttributeContainerNode
           Common interface for all nodes in attoDOM trees that can serve as attribute containers.
 interface ICDATASection
           Common interface for CDATA Section nodes in attoDOM trees.
 interface IComment
           Common interface for Comment nodes in attoDOM trees.
 interface IDocType
           Common interface for DOCTYPE clauses attoDOM trees.
 interface IDocument
           Common interface for attoDOM documents.
 interface IElement
           Common interface for all element nodes in attoDOM trees.
 interface INamedNode
           Common interface for all nodes in attoDOM trees that have a name.
 interface INestableNode
           Common interface for all nodes in attoDOM trees that can have children nodes.
 interface IProcessingInstruction
           Common interface for Processing Instructions in attoDOM trees.
 interface IText
           Common interface for Text nodes in attoDOM trees.
 interface IXmlDeclaration
           Common interface for XML Declarations in attoDOM trees.
 

Methods in org.attoparser.markup.dom with type parameters of type INode
<T extends INode>
List<T>
INestableNode.getChildrenOfType(Class<T> type)
           
<T extends INode>
T
INestableNode.getFirstChildOfType(Class<T> type)
           
 

Methods in org.attoparser.markup.dom that return INode
 INode INode.cloneNode(INestableNode parent)
           
 INode INestableNode.getFirstChild()
           
 

Methods in org.attoparser.markup.dom that return types with arguments of type INode
 List<INode> INestableNode.getChildren()
           
 

Methods in org.attoparser.markup.dom with parameters of type INode
 void INestableNode.addChild(INode newChild)
           
 void INestableNode.insertChild(int index, INode newChild)
           
 void INestableNode.insertChildAfter(INode after, INode newChild)
           
 void INestableNode.insertChildBefore(INode before, INode newChild)
           
 void INestableNode.removeChild(INode child)
           
 void IDOMWriter.write(INode node, Writer writer)
           
 void AbstractDOMWriter.write(INode node, Writer writer)
           
 

Uses of INode in org.attoparser.markup.dom.impl
 

Classes in org.attoparser.markup.dom.impl that implement INode
 class AbstractNestableNode
           Abstract base class for all implementation of INestableNode.
 class AbstractNode
           Base abstract class for all nodes in a attoDOM tree.
 class CDATASection
           Default implementation of the ICDATASection interface.
 class Comment
           Default implementation of the IComment interface.
 class DocType
           Default implementation of the IDocType interface.
 class Document
           Default implementation of the IDocument interface.
 class Element
           Default implementation of the IElement interface.
 class ProcessingInstruction
           Default implementation of the IProcessingInstruction interface.
 class Text
           Default implementation of the IText interface.
 class XmlDeclaration
           Default implementation of the IXmlDeclaration interface.
 

Methods in org.attoparser.markup.dom.impl with type parameters of type INode
<T extends INode>
List<T>
AbstractNestableNode.getChildrenOfType(Class<T> type)
           
<T extends INode>
T
AbstractNestableNode.getFirstChildOfType(Class<T> type)
           
 

Methods in org.attoparser.markup.dom.impl that return INode
 INode AbstractNestableNode.getFirstChild()
           
 

Methods in org.attoparser.markup.dom.impl that return types with arguments of type INode
 List<INode> AbstractNestableNode.getChildren()
           
 

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



Copyright © 2012 The ATTOPARSER team. All Rights Reserved.