java - ctrl-click goes to the declaration of the method I clicked. For interfaces with one implementation, how can I just directly go to that implementation? -


i have debug java code written there interface , 1 implementation of interface.

for instance there interface foo 1 implementation called fooimpl. in following code if ctrl-click on dothings it'll jump foo.java when want go fooimpl.java see implementation.

public void dostuff(foo foo) {     foo.dothings(); }    

when end @ interface have use ctrl-shift-r open fooimpl. it'd nice if lick ctrl-alt-click on dothings , end inside fooimpl.java. if there multiple implementations in workspace perhaps pop box telling me are.

is there plugin or existing function in eclipse this? know go foo.java , hierarchy , go implementation, that's more clicks necessary when there 1 implementation of interface.

the implementors plugin pretty ask for. if there 1 implementation open directly, otherwise let choose.


Comments

Popular posts from this blog

c++ - Convert big endian to little endian when reading from a binary file -

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

unicode - Are email addresses allowed to contain non-alphanumeric characters? -