org.attoparser.markup.dom
Interface INode

All Known Subinterfaces:
IAttributeContainerNode, ICDATASection, IComment, IDocType, IDocument, IElement, INamedNode, INestableNode, IProcessingInstruction, IText, IXmlDeclaration
All Known Implementing Classes:
AbstractNestableNode, AbstractNode, CDATASection, Comment, DocType, Document, Element, ProcessingInstruction, Text, XmlDeclaration

public interface INode

Base interface for all nodes in attoDOM trees.

Since:
1.1
Author:
Daniel Fernández

Method Summary
 INode cloneNode(INestableNode parent)
           
 Integer getCol()
           
 Integer getLine()
           
 INestableNode getParent()
           
 boolean hasCol()
           
 boolean hasLine()
           
 boolean hasParent()
           
 void setCol(Integer col)
           
 void setLine(Integer line)
           
 void setParent(INestableNode parent)
           
 

Method Detail

hasLine

boolean hasLine()

getLine

Integer getLine()

setLine

void setLine(Integer line)

hasCol

boolean hasCol()

getCol

Integer getCol()

setCol

void setCol(Integer col)

hasParent

boolean hasParent()

getParent

INestableNode getParent()

setParent

void setParent(INestableNode parent)

cloneNode

INode cloneNode(INestableNode parent)


Copyright © 2012 The ATTOPARSER team. All Rights Reserved.