プロジェクト内のすべてのデフォルト スコープ、別名パッケージ スコープのクラス メンバーを検索したいと考えています。(キーワード 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?
}