本文整理汇总了Java中com.intellij.psi.search.PsiShortNamesCache.processFieldsWithName方法的典型用法代码示例。如果您正苦于以下问题:Java PsiShortNamesCache.processFieldsWithName方法的具体用法?Java PsiShortNamesCache.processFieldsWithName怎么用?Java PsiShortNamesCache.processFieldsWithName使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.intellij.psi.search.PsiShortNamesCache
的用法示例。
在下文中一共展示了PsiShortNamesCache.processFieldsWithName方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: processFieldsWithName
import com.intellij.psi.search.PsiShortNamesCache; //导入方法依赖的package包/类
@Override
public boolean processFieldsWithName(@NotNull String key,
@NotNull Processor<? super PsiField> processor,
@NotNull GlobalSearchScope scope,
@Nullable IdFilter filter) {
for (PsiShortNamesCache cache : myCaches) {
if (!cache.processFieldsWithName(key, processor, scope, filter)) return false;
}
return true;
}
示例2: processFieldsWithName
import com.intellij.psi.search.PsiShortNamesCache; //导入方法依赖的package包/类
@Override
public boolean processFieldsWithName(@NotNull String key, @NotNull Processor<? super PsiField> processor, @NotNull GlobalSearchScope scope,
@Nullable IdFilter filter)
{
for(PsiShortNamesCache cache : myCaches)
{
if(!cache.processFieldsWithName(key, processor, scope, filter))
{
return false;
}
}
return true;
}
示例3: getMembersToImport
import com.intellij.psi.search.PsiShortNamesCache; //导入方法依赖的package包/类
@NotNull
@Override
protected List<PsiField> getMembersToImport(boolean applicableOnly)
{
final Project project = myRef.getProject();
PsiShortNamesCache cache = PsiShortNamesCache.getInstance(project);
final PsiJavaCodeReferenceElement element = myRef.getElement();
String name = element != null ? element.getReferenceName() : null;
if(name == null)
{
return Collections.emptyList();
}
if(element instanceof PsiExpression && PsiUtil.isAccessedForWriting((PsiExpression) element) || element.getParent() instanceof PsiTypeElement)
{
return Collections.emptyList();
}
final StaticMembersProcessor<PsiField> processor = new StaticMembersProcessor<PsiField>(element)
{
@Override
protected boolean isApplicable(PsiField field, PsiElement place)
{
final PsiType expectedType = getExpectedType();
return expectedType == null || TypeConversionUtil.isAssignable(expectedType, field.getType());
}
};
cache.processFieldsWithName(name, processor, element.getResolveScope(), null);
return processor.getMembersToImport(applicableOnly);
}