IDEA-62053 Smart completion should suggest "public static final members" of any class

This commit is contained in:
peter
2012-08-06 23:50:30 +02:00
parent fea09a458f
commit 8d74a7248c
15 changed files with 181 additions and 139 deletions
@@ -42,7 +42,7 @@ public class JavaStaticMemberTypeIndex extends StringStubIndexExtension<PsiMembe
return JavaStubIndexKeys.JVM_STATIC_MEMBERS_TYPES;
}
public Collection<PsiMember> getStaticMembers(final String shortTypeText, final Project project, @NotNull final GlobalSearchScope scope) {
public Collection<PsiMember> getStaticMembers(@NotNull final String shortTypeText, final Project project, @NotNull final GlobalSearchScope scope) {
return super.get(shortTypeText, project, new JavaSourceFilterScope(scope));
}