我想在我的项目中找到所有默认范围的,也就是包范围的类成员。(其他范围没问题,因为我可以搜索关键字public/protected/private,但是在这种情况下没有关键字可以搜索。)
是否有 eclipse 插件或任何可以进行这种搜索的东西?
public class Foo {
private int a; // these are easy
protected int b; // to find,
public int c; // thanks to keywords
int d; // but ones like this?
}