Package org.openjdk.jmc.common.tree
Interface IParent<T>
- Type Parameters:
T
- child object type
- All Known Subinterfaces:
IActionProvider
public interface IParent<T>
An interface for objects that are parents of other objects.
-
Method Summary
-
Method Details
-
hasChildren
boolean hasChildren()- Returns:
true
ifgetChildren()
would return a non-empty collection
-
getChildren
Collection<? extends T> getChildren()- Returns:
- a collection with the child objects
-