[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[news.eclipse.tools.jdt] Re: Find method in Super Class

Juergen Weber wrote:
public class A
{
 public void m()
 {
 }
}

public class Z extends A
{
} Hi,


if you are in the editor for Z.java, how can you quickly go to the definition of m() in A.java especially if there are 10 levels of class hierarchy between A and Z? Of course, when there is an m() in D, the editor for D.java should open instead of A.java

Anywhere where m() is referenced (called) just put the cursor on it and hit F3 (Open Declaration). This also works for classes and variables, too.


Hope this helps,
	Eric