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 interfaceINestableNodeCommon 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) classAbstractNestableNode(package private) classAbstractNodeclassCDATASectionCDATA Section node in a DOM tree.classCommentComment node in a DOM tree.classDocTypeDOCTYPE clause node in a DOM tree.classDocumentRoot object for a DOM object tree produced by theDOMBuilderMarkupHandlerhandler or theIDOMMarkupParserparser implementations.classElementElement node in a DOM tree.classProcessingInstructionProcessing Instruction node in a DOM tree.classTextText node in a DOM tree.classXmlDeclarationXML 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. childrenMethods 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 INodeINode. cloneNode(INestableNode parent)INodeAbstractNestableNode. getFirstChild()INodeINestableNode. 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 voidAbstractNestableNode. addChild(INode newChild)voidINestableNode. addChild(INode newChild)voidAbstractNestableNode. insertChild(int index, INode newChild)voidINestableNode. insertChild(int index, INode newChild)voidAbstractNestableNode. insertChildAfter(INode after, INode newChild)voidINestableNode. insertChildAfter(INode after, INode newChild)voidAbstractNestableNode. insertChildBefore(INode before, INode newChild)voidINestableNode. insertChildBefore(INode before, INode newChild)voidAbstractNestableNode. removeChild(INode child)voidINestableNode. removeChild(INode child)static voidDOMWriter. write(INode node, java.io.Writer writer)
-