本文整理汇总了Java中com.intellij.psi.PsiElement.equals方法的典型用法代码示例。如果您正苦于以下问题:Java PsiElement.equals方法的具体用法?Java PsiElement.equals怎么用?Java PsiElement.equals使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.intellij.psi.PsiElement
的用法示例。
在下文中一共展示了PsiElement.equals方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: addLineMarkerUnique
import com.intellij.psi.PsiElement; //导入方法依赖的package包/类
private void addLineMarkerUnique(@NotNull Collection<LineMarkerInfo> collection, @Nullable LineMarkerInfo newMarker) {
if (newMarker == null) {
return;
}
for (LineMarkerInfo lineMarkerInfo : collection) {
PsiElement element = lineMarkerInfo.getElement();
if (element == null) {
return;
}
if (element.equals(newMarker.getElement())) {
return;
}
}
collection.add(newMarker);
}
示例2: getColumnForHeader
import com.intellij.psi.PsiElement; //导入方法依赖的package包/类
public static List<PsiElement> getColumnForHeader(@NotNull final ImpexFullHeaderParameter headerParameter) {
final PsiElement[] children = headerParameter.getParent().getChildren();
int i = -2;
for (final PsiElement child : children) {
if (!child.equals(headerParameter)) {
i++;
} else {
break;
}
}
final List<PsiElement> result = newArrayList();
PsiElement psiElement = getNextSiblingOfAnyType(
PsiTreeUtil.getParentOfType(headerParameter, ImpexHeaderLine.class),
ImpexValueLine.class,
ImpexHeaderLine.class,
ImpexRootMacroUsage.class
);
while (psiElement != null && !isHeaderLine(psiElement) && !isUserRightsMacros(psiElement)) {
if (isImpexValueLine(psiElement)) {
final PsiElement[] elements = psiElement.getChildren();
if (elements.length > i) {
result.add(elements[i]);
}
}
psiElement = getNextSiblingOfAnyType(
psiElement,
ImpexValueLine.class,
ImpexHeaderLine.class,
ImpexRootMacroUsage.class
);
}
return result;
}
示例3: addCompletions
import com.intellij.psi.PsiElement; //导入方法依赖的package包/类
@Override
protected void addCompletions(@NotNull CompletionParameters completionParameters, ProcessingContext processingContext, @NotNull CompletionResultSet completionResultSet) {
final PsiElement psiElement = completionParameters.getPosition();
final MethodReference method = PsiTreeUtil.getParentOfType(psiElement, MethodReference.class);
if (method == null || method.getParameters().length == 0) {
return;
}
if (!ViewsUtil.isValidRenderMethod(method)) {
return;
}
PsiElement parameter = psiElement;
while (parameter != null && !(parameter.getParent() instanceof ParameterList)) {
parameter = parameter.getParent();
}
if (parameter == null || !parameter.equals(method.getParameters()[0])) {
return;
}
String path = getValue(method.getParameters()[0]);
PsiDirectory directory;
if (path.startsWith("/")) {
path = path.substring(1);
directory = ViewsUtil.getRootDirectory(psiElement);
} else {
directory = ViewsUtil.getContextDirectory(psiElement);
}
if (path.contains("/")) {
path = path.substring(0, path.lastIndexOf('/') + 1);
}
while (path.contains("/") && directory != null) {
String subdirectory = path.substring(0, path.indexOf('/'));
path = path.substring(path.indexOf('/') + 1);
directory = subdirectory.equals("..") ? directory.getParent() : directory.findSubdirectory(subdirectory);
}
if (directory != null) {
if (completionResultSet.getPrefixMatcher().getPrefix().contains("/")) {
String prefix = completionResultSet.getPrefixMatcher().getPrefix();
prefix = prefix.substring(prefix.lastIndexOf("/") + 1);
completionResultSet = completionResultSet.withPrefixMatcher(prefix);
}
for (PsiDirectory psiDirectory : directory.getSubdirectories()) {
completionResultSet.addElement(new DirectoryLookupElement(psiDirectory));
}
for (PsiFile psiFile : directory.getFiles()) {
completionResultSet.addElement(new ViewLookupElement(psiFile));
}
}
}
示例4: getColumnOfHeaderUnderCaret
import com.intellij.psi.PsiElement; //导入方法依赖的package包/类
public static List<PsiElement> getColumnOfHeaderUnderCaret(@NotNull final Editor editor) {
Validate.notNull(editor);
final PsiElement psiElementUnderCaret = PsiUtilBase.getElementAtCaret(editor);
if (null == psiElementUnderCaret) {
return null;
}
final ImpexFullHeaderParameter headerParameter = PsiTreeUtil.getParentOfType(
psiElementUnderCaret,
ImpexFullHeaderParameter.class
);
if (null != headerParameter) {
final PsiElement[] children = headerParameter.getParent().getChildren();
int i = -2;
for (final PsiElement child : children) {
if (!child.equals(headerParameter)) {
i++;
} else {
break;
}
}
final List<PsiElement> result = newArrayList();
PsiElement psiElement = getNextSiblingOfAnyType(
PsiTreeUtil.getParentOfType(headerParameter, ImpexHeaderLine.class),
ImpexValueLine.class,
ImpexHeaderLine.class,
ImpexRootMacroUsage.class
);
while (psiElement != null && !isHeaderLine(psiElement) && !isUserRightsMacros(psiElement)) {
if (isImpexValueLine(psiElement)) {
final PsiElement[] elements = psiElement.getChildren();
if (elements.length > i) {
result.add(elements[i]);
}
}
psiElement = getNextSiblingOfAnyType(
psiElement,
ImpexValueLine.class,
ImpexHeaderLine.class,
ImpexRootMacroUsage.class
);
}
return result;
}
return null;
}