use of com.intellij.psi.search.scope.packageSet.NamedScope in project intellij-community by JetBrains.
the class ScopePaneSelectInTarget method select.
@Override
public void select(PsiElement element, boolean requestFocus) {
if (getSubId() == null) {
NamedScope scope = getContainingScope(element.getContainingFile());
if (scope == null)
return;
setSubId(scope.getName());
}
super.select(element, requestFocus);
}
Aggregations