Interface ICallHierarchy
-
- All Known Implementing Classes:
CallHierarchy
public interface ICallHierarchy
Represents a call hierarchy.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CallHierarchyKind
getKind()
Returns the kind of this call hierarchy.ICallHierarchyNode[]
getRoots()
Returns the root nodes of this call hierarchy.
-
-
-
Method Detail
-
getKind
CallHierarchyKind getKind()
Returns the kind of this call hierarchy.- Returns:
- the call hierarchy kind (never
null
)
-
getRoots
ICallHierarchyNode[] getRoots()
Returns the root nodes of this call hierarchy.- Returns:
- the root nodes of the call hierarchy (never
null
, may be empty). Clients must not modify the returned array.
-
-