Package org.hippoecm.hst.core.linking
Interface LocationMapTreeItem
-
public interface LocationMapTreeItem
Expert: ALocationMapTreeItem
is an item in the tree of the containingLocationMapTree
. It contains references to theHstSiteMapItem
's that belong to thisLocationMapTreeItem
. AHstSiteMapItem
must not belong to multipleLocationMapTreeItem
's.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LocationMapTreeItem
getChild(String name)
List<HstSiteMapItem>
getHstSiteMapItems()
LocationMapTreeItem
getParentItem()
-
-
-
Method Detail
-
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
LocationMapTreeItem getChild(String name)
- 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
-
-