Package org.xwiki.tree
Interface EntityTreeFilter
-
- All Known Implementing Classes:
AbstractEntityTreeFilter
@Role public interface EntityTreeFilter
The interface used to filter entity tree nodes.- Since:
- 11.10
- Version:
- $Id: d653ee7a730ae54e37f1a549eeacbc991aa4838d $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Set<EntityReference>
getChildExclusions(EntityReference parentReference)
Set<EntityReference>
getDescendantExclusions(EntityReference parentReference)
-
-
-
Method Detail
-
getChildExclusions
Set<EntityReference> getChildExclusions(EntityReference parentReference)
- Parameters:
parentReference
- specifies the parent node to filter- Returns:
- the set of child nodes to exclude from the specified parent
-
getDescendantExclusions
Set<EntityReference> getDescendantExclusions(EntityReference parentReference)
- Parameters:
parentReference
- specifies the parent node to filter- Returns:
- the set of descendant nodes to exclude from the sub-tree rooted in the specified parent node
-
-