Package org.attoparser.dom
Interface INode
-
- All Known Subinterfaces:
INestableNode
- All Known Implementing Classes:
AbstractNestableNode
,AbstractNode
,CDATASection
,Comment
,DocType
,Document
,Element
,ProcessingInstruction
,Text
,XmlDeclaration
public interface INode
Base interface for all nodes in a DOM tree.
- Since:
- 2.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description INode
cloneNode(INestableNode parent)
java.lang.Integer
getCol()
java.lang.Integer
getLine()
INestableNode
getParent()
boolean
hasCol()
boolean
hasLine()
boolean
hasParent()
void
setCol(java.lang.Integer col)
void
setLine(java.lang.Integer line)
void
setParent(INestableNode parent)
-
-
-
Method Detail
-
hasLine
boolean hasLine()
-
getLine
java.lang.Integer getLine()
-
setLine
void setLine(java.lang.Integer line)
-
hasCol
boolean hasCol()
-
getCol
java.lang.Integer getCol()
-
setCol
void setCol(java.lang.Integer col)
-
hasParent
boolean hasParent()
-
getParent
INestableNode getParent()
-
setParent
void setParent(INestableNode parent)
-
cloneNode
INode cloneNode(INestableNode parent)
-
-