本文整理汇总了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;
}
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:22,代码来源:DefaultDomTargetDescriptionProvider.java
示例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;
}
开发者ID:lshain-android-source,项目名称:tools-idea,代码行数:21,代码来源:DefaultDomTargetDescriptionProvider.java
示例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);
}
开发者ID:consulo,项目名称:consulo-java,代码行数:18,代码来源:HighlightUtil.java
示例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);
}
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:8,代码来源:HighlightUtil.java
示例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;
}
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:16,代码来源:DefaultPomTargetDescriptionProvider.java
示例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;
}
开发者ID:consulo,项目名称:consulo,代码行数:16,代码来源:DefaultPomTargetDescriptionProvider.java
示例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);
}
开发者ID:huoguangjin,项目名称:MultiHighlight,代码行数:66,代码来源:MultiHighlightHandler.java
注:本文中的com.intellij.codeInsight.highlighting.HighlightUsagesDescriptionLocation类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论