Package com.atlassian.confluence.pages
Class ContentNode
- java.lang.Object
-
- com.atlassian.confluence.pages.ContentNode
-
public class ContentNode extends Object
-
-
Constructor Summary
Constructors Constructor Description ContentNode()
ContentNode(Page page)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addChild(ContentNode contentNode)
void
addChildren(List<ContentNode> children)
boolean
equals(Object obj)
List<ContentNode>
getChildren()
Page
getPage()
ContentNode
getParent()
int
hashCode()
void
removeChild(ContentNode node)
void
setChildren(List<ContentNode> children)
void
setPage(Page page)
void
setParent(ContentNode parent)
String
toString()
-
-
-
Constructor Detail
-
ContentNode
public ContentNode()
-
ContentNode
public ContentNode(Page page)
-
-
Method Detail
-
getPage
public Page getPage()
-
setPage
public void setPage(Page page)
-
getChildren
public List<ContentNode> getChildren()
-
setChildren
public void setChildren(List<ContentNode> children)
-
addChild
public void addChild(ContentNode contentNode)
-
addChildren
public void addChildren(List<ContentNode> children)
-
removeChild
public void removeChild(ContentNode node)
-
getParent
public ContentNode getParent()
-
setParent
public void setParent(ContentNode parent)
-
-