Method Follow
Submitted by Wednesday, 2 February, 2005 - 23:01
on
Is there a way to "goto" a method from another class. For examle in the foo class below is the a way to automagically click on b.name and have it open the Bar.java file and position at the name method?
public void something() {
Bar b = new Bar();
String s = b.name();
}
public void something() {
Bar b = new Bar();
String s = b.name();
}