Interface TodoNode
- All Superinterfaces:
Containable, Identifiable, OsidNode
This interface is a container for a partial hierarchy retrieval. The
number of hierarchy levels traversable through this interface depend on
the number of levels requested in the TodoHierarchySession .
-
Method Summary
Modifier and TypeMethodDescriptionGets the children of this todo.Gets the parents of this todo.getTodo()Gets theTodoat this node.Methods inherited from interface Containable
isSequesteredModifier and TypeMethodDescriptionbooleanTests if thisContainableis sequestered in that it should not appear outside of its aggregated composition.Methods inherited from interface Identifiable
getId, isCurrentMethods inherited from interface OsidNode
getChildIds, getParentIds, hasChildren, hasParents, isLeaf, isRootModifier and TypeMethodDescriptionGets the children of this node.Gets the parents of this node.booleanTests if any children are available in this node structure.booleanTests if any parents are available in this node structure.booleanisLeaf()Tests if this node is a leaf in the hierarchy (has no children).booleanisRoot()Tests if this node is a root in the hierarchy (has no parents).
-
Method Details
-
getTodo
Todo getTodo()Gets theTodoat this node.- Returns:
- the todo represented by this node
- Compliance:
mandatory- This method must be implemented.
-
getParentTodoNodes
TodoNodeList getParentTodoNodes()Gets the parents of this todo.- Returns:
- the parents of this todo
- Compliance:
mandatory- This method must be implemented.
-
getChildTodoNodes
TodoNodeList getChildTodoNodes()Gets the children of this todo.- Returns:
- the children of this todo
- Compliance:
mandatory- This method must be implemented.
-