本文整理汇总了Java中com.intellij.psi.ElementDescriptionLocation类的典型用法代码示例。如果您正苦于以下问题:Java ElementDescriptionLocation类的具体用法?Java ElementDescriptionLocation怎么用?Java ElementDescriptionLocation使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
ElementDescriptionLocation类属于com.intellij.psi包,在下文中一共展示了ElementDescriptionLocation类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getElementDescription
import com.intellij.psi.ElementDescriptionLocation; //导入依赖的package包/类
@Override
public String getElementDescription(@NotNull PsiElement element, @NotNull ElementDescriptionLocation location) {
if (location == UsageViewNodeTextLocation.INSTANCE && element instanceof PsiNamedElement) {
return getElementDescription(element, UsageViewShortNameLocation.INSTANCE);
}
if (location == UsageViewShortNameLocation.INSTANCE || location == UsageViewLongNameLocation.INSTANCE) {
if (element instanceof PsiNamedElement) {
return ((PsiNamedElement) element).getName();
}
}
if (location == UsageViewTypeLocation.INSTANCE) {
if (element instanceof PsiModuleName) {
return "module";
} else if (element instanceof PsiTypeName) {
return "type";
} else if (element instanceof PsiVarName) {
return "let";
}
}
return element.toString();
}
示例2: getElementDescription
import com.intellij.psi.ElementDescriptionLocation; //导入依赖的package包/类
@Nullable
@Override
public String getElementDescription(@NotNull final PsiElement element, @NotNull final ElementDescriptionLocation location) {
if (element instanceof PyStringLiteralExpression) {
final PyMagicLiteralExtensionPoint point = PyMagicLiteralTools.getPoint((PyStringLiteralExpression)element);
if (point != null) {
if (location instanceof UsageViewTypeLocation) {
return point.getLiteralType();
}
if ((location instanceof UsageViewShortNameLocation) || (location instanceof UsageViewLongNameLocation)) {
return ((StringLiteralExpression)element).getStringValue();
}
}
}
return null;
}
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:17,代码来源:PyMagicLiteralElementDescriptionProvider.java
示例3: getElementDescription
import com.intellij.psi.ElementDescriptionLocation; //导入依赖的package包/类
@Override
public String getElementDescription(@NotNull PomTarget element, @NotNull ElementDescriptionLocation location) {
if (!(element instanceof DomTarget)) return null;
final DomTarget target = (DomTarget)element;
DomElement domElement = target.getDomElement();
final ElementPresentationTemplate template = domElement.getChildDescription().getPresentationTemplate();
final ElementPresentation presentation = template != null ? template.createPresentation(domElement) : domElement.getPresentation();
if (location == UsageViewTypeLocation.INSTANCE) {
return presentation.getTypeName();
}
if (location == UsageViewNodeTextLocation.INSTANCE || location == UsageViewLongNameLocation.INSTANCE) {
return presentation.getTypeName() + " " + StringUtil.notNullize(presentation.getElementName(), "''");
}
if (location instanceof HighlightUsagesDescriptionLocation) {
return presentation.getTypeName();
}
return null;
}
示例4: getElementDescription
import com.intellij.psi.ElementDescriptionLocation; //导入依赖的package包/类
@Override
public String getElementDescription(@NotNull final PsiElement element, @NotNull final ElementDescriptionLocation location) {
if (location instanceof UsageViewShortNameLocation) {
if (element instanceof XmlAttributeValue) {
return ((XmlAttributeValue)element).getValue();
}
}
if (location instanceof UsageViewLongNameLocation) {
if (element instanceof XmlTag) {
return ((XmlTag)element).getName();
}
else if (element instanceof XmlAttributeValue) {
return ((XmlAttributeValue)element).getValue();
}
}
return null;
}
示例5: getElementDescription
import com.intellij.psi.ElementDescriptionLocation; //导入依赖的package包/类
@Override
public String getElementDescription(@NotNull final PsiElement element, @NotNull final ElementDescriptionLocation location) {
if (!(location instanceof NonCodeSearchDescriptionLocation)) return null;
final NonCodeSearchDescriptionLocation ncdLocation = (NonCodeSearchDescriptionLocation)location;
if (ncdLocation.isNonJava()) return null;
if (element instanceof XmlTag) {
return ((XmlTag)element).getValue().getTrimmedText();
}
else if (element instanceof XmlAttribute) {
return ((XmlAttribute)element).getValue();
}
else if (element instanceof XmlAttributeValue) {
return ((XmlAttributeValue)element).getValue();
}
return null;
}
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:17,代码来源:XmlNonCodeSearchElementDescriptionProvider.java
示例6: getElementDescription
import com.intellij.psi.ElementDescriptionLocation; //导入依赖的package包/类
@Nullable
@Override
public String getElementDescription(PsiElement element, ElementDescriptionLocation location) {
if (!(element instanceof BuildElement)) {
return null;
}
if (location instanceof UsageViewLongNameLocation) {
return ((BuildElement) element).getPresentableText();
}
if (location instanceof UsageViewShortNameLocation) {
if (element instanceof PsiNameIdentifierOwner) {
// this is used by rename operations, so needs to be accurate
return ((PsiNameIdentifierOwner) element).getName();
}
if (element instanceof PsiFile) {
return ((PsiFile) element).getName();
}
return ((BuildElement) element).getPresentableText();
}
return null;
}
示例7: getElementDescription
import com.intellij.psi.ElementDescriptionLocation; //导入依赖的package包/类
@Nullable
@Override
public String getElementDescription(@NotNull PsiElement element, @NotNull ElementDescriptionLocation location) {
// https://intellij-support.jetbrains.com/hc/en-us/community/posts/206765785-Custom-name-for-Find-Usages-of-symbol
if (location instanceof UsageViewLongNameLocation ||
location instanceof UsageViewShortNameLocation) {
if (element instanceof SchemaTypeDef) {
SchemaTypeDef schemaTypeDef = (SchemaTypeDef) element;
return SchemaPresentationUtil.getName(schemaTypeDef, true);
}
if (element instanceof SchemaQnSegment) {
SchemaQnSegment fqnSegment = (SchemaQnSegment) element;
return fqnSegment.getQn().toString();
}
if (element instanceof SchemaEntityTagRef) {
SchemaEntityTagRef tagRef = (SchemaEntityTagRef) element;
return tagRef.getQid().getText();
}
}
return null;
}
示例8: getElementDescription
import com.intellij.psi.ElementDescriptionLocation; //导入依赖的package包/类
@Override
@Nullable
public String getElementDescription(@NotNull PsiElement element, @NotNull ElementDescriptionLocation location) {
if (!(element instanceof GLSLDeclarator)) return null;
GLSLDeclarator declarator = (GLSLDeclarator) element;
GLSLDeclaration declaration = declarator.getParentDeclaration();
if (declaration == null) return null;
if (location instanceof UsageViewTypeLocation) {
return declaration.getDeclarationDescription();
}
if (location instanceof UsageViewLongNameLocation) {
return declaration.getDeclarationDescription() + " '" + declarator.getName() + "'";
}
if (location instanceof UsageViewNodeTextLocation) {
return declarator.getName();
}
return null;
// return location.toString();
}
示例9: getElementDescription
import com.intellij.psi.ElementDescriptionLocation; //导入依赖的package包/类
public String getElementDescription(@NotNull PomTarget element, @NotNull ElementDescriptionLocation location) {
if (!(element instanceof DomTarget)) return null;
final DomTarget target = (DomTarget)element;
DomElement domElement = target.getDomElement();
final ElementPresentationTemplate template = domElement.getChildDescription().getPresentationTemplate();
final ElementPresentation presentation = template != null ? template.createPresentation(domElement) : domElement.getPresentation();
if (location == UsageViewTypeLocation.INSTANCE) {
return presentation.getTypeName();
}
if (location == UsageViewNodeTextLocation.INSTANCE || location == UsageViewLongNameLocation.INSTANCE) {
return presentation.getTypeName() + " " + StringUtil.notNullize(presentation.getElementName(), "''");
}
if (location instanceof HighlightUsagesDescriptionLocation) {
return presentation.getTypeName();
}
return null;
}
示例10: getElementDescription
import com.intellij.psi.ElementDescriptionLocation; //导入依赖的package包/类
public String getElementDescription(@NotNull final PsiElement element, @NotNull final ElementDescriptionLocation location) {
if (location instanceof UsageViewShortNameLocation) {
if (element instanceof XmlAttributeValue) {
return ((XmlAttributeValue)element).getValue();
}
}
if (location instanceof UsageViewLongNameLocation) {
if (element instanceof XmlTag) {
return ((XmlTag)element).getName();
}
else if (element instanceof XmlAttributeValue) {
return ((XmlAttributeValue)element).getValue();
}
}
return null;
}
示例11: getElementDescription
import com.intellij.psi.ElementDescriptionLocation; //导入依赖的package包/类
@Nullable
@Override
public String getElementDescription(@NotNull PsiElement element, @NotNull ElementDescriptionLocation location) {
if (!TranslationUtils.isTranslationFile(element.getContainingFile())) {
return null;
}
if (location instanceof UsageViewTypeLocation) {
return "Translation key";
}
if (location instanceof UsageViewNodeTextLocation || location instanceof UsageViewShortNameLocation || location instanceof UsageViewLongNameLocation) {
return TranslationHashElement.newInstance(element).getFullKey();
}
return null;
}
示例12: getElementDescription
import com.intellij.psi.ElementDescriptionLocation; //导入依赖的package包/类
@Nullable
@Override
public String getElementDescription(@NotNull PsiElement element, @NotNull ElementDescriptionLocation location) {
if (location instanceof UsageViewTypeLocation) {
if (element instanceof FrogAttribute) {
return "Attribute";
}
} else if (location instanceof UsageViewNodeTextLocation
|| location instanceof UsageViewShortNameLocation
|| location instanceof UsageViewLongNameLocation) {
if (element instanceof FrogAttribute) {
return ((FrogAttribute) element).getName();
}
}
return null;
}
示例13: getElementDescription
import com.intellij.psi.ElementDescriptionLocation; //导入依赖的package包/类
@Nullable
@Override
public String getElementDescription(@NotNull PsiElement element, @NotNull ElementDescriptionLocation location) {
if (location instanceof UsageViewLongNameLocation) {
if (element instanceof PsiNamedElement && element instanceof AppleScriptPsiElement) {
return ((PsiNamedElement) element).getName();
}
}
return null;
}
示例14: getElementDescription
import com.intellij.psi.ElementDescriptionLocation; //导入依赖的package包/类
@Override
@Nullable
public String getElementDescription(@NotNull PsiElement element, @NotNull ElementDescriptionLocation location) {
if (element instanceof PomTargetPsiElement) {
return getElementDescription(((PomTargetPsiElement)element).getTarget(), location);
}
return null;
}
示例15: getDefaultProvider
import com.intellij.psi.ElementDescriptionLocation; //导入依赖的package包/类
@Override
public ElementDescriptionProvider getDefaultProvider() {
return new ElementDescriptionProvider() {
@Override
public String getElementDescription(@NotNull PsiElement element, @NotNull ElementDescriptionLocation location) {
if (element instanceof PsiPresentableMetaData) {
return ((PsiPresentableMetaData)element).getTypeName();
}
return null;
}
};
}