Issue
I have following code:
public class MyClass{
...
}
At same workspace I have following class
public class AnotherClass{
@Autowired
MyClass myClass;
...
}
If I click right mouse button on MyClass
(first mentioned) and select "open call hierarchy" I don't see anything.
How to find this usage in Eclipse?
Solution
Right click on Myclass, find references in project|workspace.
Open call hierarchy, open inheritance hierarchy.
Answered By - Vinit Prajapati
Answer Checked By - Mildred Charles (JavaFixing Admin)