get_call_hierarchy_incoming
Identify methods that call a specific Java method to understand dependencies before making changes. Analyze incoming call hierarchy for code impact assessment.
Instructions
Find all callers of a method (incoming calls).
USAGE: Position cursor on a method name OUTPUT: List of methods that call this method
IMPORTANT: Uses ZERO-BASED coordinates.
Useful for understanding who depends on a method before changing it.
Requires load_project to be called first.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| column | Yes | Zero-based column number | |
| line | Yes | Zero-based line number | |
| maxResults | No | Max callers to return (default 50) | |
| filePath | Yes | Path to source file |