本文整理汇总了Java中com.intellij.codeInsight.highlighting.HighlightUsagesDescriptionLocation类的典型用法代码示例。如果您正苦于以下问题:Java HighlightUsagesDescriptionLocation类的具体用法?Java HighlightUsagesDescriptionLocation怎么用?Java HighlightUsagesDescriptionLocation使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
HighlightUsagesDescriptionLocation类属于com.intellij.codeInsight.highlighting包,在下文中一共展示了HighlightUsagesDescriptionLocation类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getElementDescription
import com.intellij.codeInsight.highlighting.HighlightUsagesDescriptionLocation; //导入依赖的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;
}
示例2: getElementDescription
import com.intellij.codeInsight.highlighting.HighlightUsagesDescriptionLocation; //导入依赖的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;
}
示例3: format
import com.intellij.codeInsight.highlighting.HighlightUsagesDescriptionLocation; //导入依赖的package包/类
@NotNull
private static String format(@NotNull PsiElement element)
{
if(element instanceof PsiClass)
{
return formatClass((PsiClass) element);
}
if(element instanceof PsiMethod)
{
return JavaHighlightUtil.formatMethod((PsiMethod) element);
}
if(element instanceof PsiField)
{
return formatField((PsiField) element);
}
return ElementDescriptionUtil.getElementDescription(element, HighlightUsagesDescriptionLocation.INSTANCE);
}
示例4: format
import com.intellij.codeInsight.highlighting.HighlightUsagesDescriptionLocation; //导入依赖的package包/类
@NotNull
private static String format(@NotNull PsiElement element) {
if (element instanceof PsiClass) return formatClass((PsiClass)element);
if (element instanceof PsiMethod) return JavaHighlightUtil.formatMethod((PsiMethod)element);
if (element instanceof PsiField) return formatField((PsiField)element);
return ElementDescriptionUtil.getElementDescription(element, HighlightUsagesDescriptionLocation.INSTANCE);
}
示例5: getElementDescription
import com.intellij.codeInsight.highlighting.HighlightUsagesDescriptionLocation; //导入依赖的package包/类
@Override
public String getElementDescription(@NotNull PomTarget element, @NotNull ElementDescriptionLocation location) {
if (element instanceof PsiElement) return null;
if (location == UsageViewTypeLocation.INSTANCE) {
return getTypeName(element);
}
if (location == UsageViewNodeTextLocation.INSTANCE) {
return getTypeName(element) + " " + StringUtil.notNullize(element instanceof PomNamedTarget ? ((PomNamedTarget)element).getName() : null, "''");
}
if (location instanceof HighlightUsagesDescriptionLocation) {
return getTypeName(element);
}
return null;
}
示例6: getElementDescription
import com.intellij.codeInsight.highlighting.HighlightUsagesDescriptionLocation; //导入依赖的package包/类
@Override
public String getElementDescription(@Nonnull PomTarget element, @Nonnull ElementDescriptionLocation location) {
if (element instanceof PsiElement) return null;
if (location == UsageViewTypeLocation.INSTANCE) {
return getTypeName(element);
}
if (location == UsageViewNodeTextLocation.INSTANCE) {
return getTypeName(element) + " " + StringUtil.notNullize(element instanceof PomNamedTarget ? ((PomNamedTarget)element).getName() : null, "''");
}
if (location instanceof HighlightUsagesDescriptionLocation) {
return getTypeName(element);
}
return null;
}
示例7: highlightPsiElement
import com.intellij.codeInsight.highlighting.HighlightUsagesDescriptionLocation; //导入依赖的package包/类
private static void highlightPsiElement(@NotNull Project project,
@NotNull PsiElement psiElement, @NotNull Editor editor, @NotNull PsiFile file,
boolean shouldClear) {
final PsiElement target = SmartPointerManager.getInstance(psiElement.getProject())
.createSmartPsiElementPointer(psiElement)
.getElement();
if (target == null) {
return;
}
if (file instanceof PsiCompiledFile) {
file = ((PsiCompiledFile) file).getDecompiledPsiFile();
}
final Couple<List<TextRange>> usages = getUsages(target, file);
final List<TextRange> readRanges = usages.first;
final List<TextRange> writeRanges = usages.second;
final HighlightManager highlightManager = HighlightManager.getInstance(project);
if (shouldClear) {
clearHighlights(editor, highlightManager, readRanges);
clearHighlights(editor, highlightManager, writeRanges);
WindowManager.getInstance().getStatusBar(project).setInfo("");
return;
}
// TODO: 10/02/2017 pass target?
final TextAttributes ta = TextAttributesFactory.getInstance().get();
final Color scrollMarkColor;
if (ta.getErrorStripeColor() != null) {
scrollMarkColor = ta.getErrorStripeColor();
} else if (ta.getBackgroundColor() != null) {
scrollMarkColor = ta.getBackgroundColor().darker();
} else {
scrollMarkColor = null;
}
final String elementName = ElementDescriptionUtil.getElementDescription(target,
HighlightUsagesDescriptionLocation.INSTANCE);
// TODO: 06/02/2017 highlight write and read access
ArrayList<RangeHighlighter> highlighters = new ArrayList<>();
highlight(highlightManager, readRanges, editor, ta, highlighters, scrollMarkColor);
highlight(highlightManager, writeRanges, editor, ta, highlighters, scrollMarkColor);
final Document doc = editor.getDocument();
for (RangeHighlighter highlighter : highlighters) {
highlighter.setErrorStripeTooltip(
HighlightHandlerBase.getLineTextErrorStripeTooltip(doc,
highlighter.getStartOffset(), true));
}
int refCount = readRanges.size() + writeRanges.size();
String msg;
if (refCount > 0) {
msg = MessageFormat.format("{0} {0, choice, 1#usage|2#usages} of {1} found", refCount,
elementName);
} else {
msg = MessageFormat.format("No usages of {0} found", elementName);
}
WindowManager.getInstance().getStatusBar(project).setInfo(msg);
}