get_call_hierarchy_outgoing
Analyze Java methods to identify all outgoing method calls and dependencies by providing file path and cursor position coordinates.
Instructions
Find all methods called by a method (outgoing calls).
USAGE: Position cursor on a method name OUTPUT: List of methods that this method calls
IMPORTANT: Uses ZERO-BASED coordinates.
Useful for understanding what a method depends on.
Requires load_project to be called first.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filePath | Yes | Path to source file | |
| line | Yes | Zero-based line number | |
| column | Yes | Zero-based column number |