Is there a way to automatically go to a Class in eclipse from an instance of it.
Foo foo = new Foo();
// lots of lines of code
foo.some(); // from foo I want to go to the Class Foo direcly with a key press.
I received some answers but that is not what I was looking for. Sometime I don't call a method, I just have reference foo
only, e.g when calling other method :
method(foo, bar);