Linked file tree in Eclipse

Is there a way to get a linked file tree for files in eclipse? In other words, I want to know that all possible files can be changed by a specific file.

So, if I modify the image file, I want to know all the JSPs that reference this image and all the servlets that reference the JSP and all other Java classes that reference this servlet ... etc. Maybe I'm shooting for the moon.

(Note: I edited the post because of the comment below. Before I mentioned finding links in Java files.)

+3
source share
2 answers

Ctrl + shift + G, /. (Ctrl + Alt + H), .

question :


Update:

, , JDepend Eclipse CAP

0

http://www.allappforum.com/eclipse/eclipse_shortcuts.htm

Ctrl Shift U    Find references in file
Ctrl Shift G    Find references in workspace
Ctrl G  Find declarations in workspace
Ctrl Shift P    Navigate to matching bracket/brace
Ctrl T  Popup type hierarchy
Ctrl Shift T    Open Type
Ctrl O  Outline of current source
Ctrl F3     Outline of current cursor position
Ctrl Shift Arrow    Jump beetween methods up or down
F2  Show Javadoc
F4  Show hierarchy
Ctrl Alt H  Open call hierarchy 
0

Source: https://habr.com/ru/post/1712684/


All Articles