在eclipse中可以通過實現或其方法搜索嗎?這將是非常有用的。 下面給出了一個例子。在eclipse中按實現類搜索
public interface Foo {
public void method();
}
public class FooImpl implements Foo {
// I should be able to select this and search and it should
// show the whoever called Foo.method
public void method() {
}
}
可以請你添加一個例子 – 2011-01-06 07:22:42