Package org.hippoecm.hst.core.linking
Interface LocationMapTreeItem
public interface LocationMapTreeItem
Expert: A
LocationMapTreeItem
is an item in the tree of the containing LocationMapTree
.
It contains references to the HstSiteMapItem
's that belong to this LocationMapTreeItem
. A
HstSiteMapItem
must not belong to multiple LocationMapTreeItem's.
-
Method Summary
Modifier and TypeMethodDescription
-
Method Details
-
getHstSiteMapItems
List<HstSiteMapItem> getHstSiteMapItems()- Returns:
- List of
HstSiteMapItem
's belonging to this LocationMapTreeItem. When no HstSiteMapItem belong to this item, an empty list is returned
-
getChild
- Parameters:
name
- the name of the childLocationMapTreeItem
- Returns:
- The child
LocationMapTreeItem
with thisname
ornull
if there exists no child with this name
-
getParentItem
LocationMapTreeItem getParentItem()- Returns:
- the parent
LocationMapTreeItem
of this item ornull
when it is a rootLocationMapTreeItem
-