Package com.atlassian.confluence.core
Interface Hierarchical<T>
-
- All Known Implementing Classes:
Page
public interface Hierarchical<T>
Please do not use this interface. In its current form it is so tightly coupled with Page that it can't be implemented by any other class, and is therefore useless.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addChild(T child)
List<T>
getAncestors()
List<T>
getChildren()
T
getParent()
boolean
hasChildren()
boolean
isRootLevel()
void
removeChild(T child)
void
setChildren(List<T> children)
void
setParent(T parent)
-