本文整理汇总了Java中com.intellij.codeInsight.lookup.LookupElementPresentation.setTailText方法的典型用法代码示例。如果您正苦于以下问题:Java LookupElementPresentation.setTailText方法的具体用法?Java LookupElementPresentation.setTailText怎么用?Java LookupElementPresentation.setTailText使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.intellij.codeInsight.lookup.LookupElementPresentation
的用法示例。
在下文中一共展示了LookupElementPresentation.setTailText方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: renderElement
import com.intellij.codeInsight.lookup.LookupElementPresentation; //导入方法依赖的package包/类
@Override
public void renderElement(LookupElementPresentation presentation) {
super.renderElement(presentation);
if (myMessage.getKey() instanceof StringLiteralExpression) {
presentation.setItemText(((StringLiteralExpression) myMessage.getKey()).getContents());
presentation.setIcon(myMessage.getKey().getIcon(0));
}
PhpExpression value = (PhpExpression) myMessage.getValue();
if (value != null) {
String text = Util.PhpExpressionValue(value);
if (!text.isEmpty()) {
presentation.setTailText(" = " + text, true);
}
presentation.setTypeText(value.getType().toString());
presentation.setTypeGrayed(true);
}
}
示例2: decorateLookupElement
import com.intellij.codeInsight.lookup.LookupElementPresentation; //导入方法依赖的package包/类
public static void decorateLookupElement(@NotNull LookupElementPresentation lookupElement, @NotNull JsonRawLookupElement jsonLookup) {
if(jsonLookup.getTailText() != null) {
lookupElement.setTailText(jsonLookup.getTailText(), true);
}
if(jsonLookup.getTypeText() != null) {
lookupElement.setTypeText(jsonLookup.getTypeText());
lookupElement.setTypeGrayed(true);
}
String iconString = jsonLookup.getIcon();
if(iconString != null) {
Icon icon = getLookupIconOnString(iconString);
if(icon != null) {
lookupElement.setIcon(icon);
}
}
}
示例3: renderElement
import com.intellij.codeInsight.lookup.LookupElementPresentation; //导入方法依赖的package包/类
@Override
public void renderElement(LookupElementPresentation presentation) {
super.renderElement(presentation);
if (sudden) {
presentation.setItemTextBold(true);
if (!presentation.isReal() || !((RealLookupElementPresentation)presentation).isLookupSelectionTouched()) {
char shortcutChar = myTemplate.getShortcutChar();
if (shortcutChar == TemplateSettings.DEFAULT_CHAR) {
shortcutChar = TemplateSettings.getInstance().getDefaultShortcutChar();
}
presentation.setTypeText(" [" + KeyEvent.getKeyText(shortcutChar) + "] ");
}
presentation.setTailText(" (" + myTemplate.getDescription() + ")", true);
} else {
presentation.setTypeText(myTemplate.getDescription());
}
}
示例4: renderElement
import com.intellij.codeInsight.lookup.LookupElementPresentation; //导入方法依赖的package包/类
@Override
public void renderElement(LookupElementPresentation presentation) {
super.renderElement(presentation);
presentation.setItemTextBold(withBoldness);
presentation.setIcon(Symfony2Icons.DOCTRINE);
presentation.setTypeGrayed(true);
if(this.doctrineModelField.getTypeName() != null) {
presentation.setTypeText(this.doctrineModelField.getTypeName());
}
if(this.doctrineModelField.getRelationType() != null) {
presentation.setTailText(String.format("(%s)", this.doctrineModelField.getRelationType()), true);
}
if(this.doctrineModelField.getRelation() != null) {
presentation.setTypeText(this.doctrineModelField.getRelation());
presentation.setIcon(PhpIcons.CLASS_ICON);
}
}
示例5: renderElement
import com.intellij.codeInsight.lookup.LookupElementPresentation; //导入方法依赖的package包/类
@Override
public void renderElement(LookupElementPresentation presentation) {
// provides parent and string alias name
List<String> tailsText = new ArrayList<>();
String getName = PhpElementsUtil.getMethodReturnAsString(phpClass, "getName");
if(getName != null) {
tailsText.add(getName);
}
// @TODO: getParent should
String getParent = PhpElementsUtil.getMethodReturnAsString(phpClass, "getParent");
if(getParent != null && !getParent.equals("form")) {
tailsText.add(getParent);
}
if(tailsText.size() > 0) {
presentation.setTailText("(" + StringUtils.join(tailsText, ",") + ")", true);
}
presentation.setIcon(Symfony2Icons.FORM_TYPE);
super.renderElement(presentation);
}
示例6: formatTail
import com.intellij.codeInsight.lookup.LookupElementPresentation; //导入方法依赖的package包/类
/**
* "(GET|POST, var1, var2)"
*/
private void formatTail(@NotNull LookupElementPresentation presentation) {
List<String> tails = new ArrayList<>();
Collection<String> methods = route.getMethods();
if(methods.size() > 0) {
tails.add(StringUtils.join(ContainerUtil.map(methods, String::toUpperCase), "|"));
}
Set<String> variables = this.route.getVariables();
if(variables.size() > 0) {
tails.addAll(variables);
}
if(tails.size() > 0) {
presentation.setTailText("(" + StringUtils.join(tails, ", ") + ")", true);
}
}
示例7: renderElement
import com.intellij.codeInsight.lookup.LookupElementPresentation; //导入方法依赖的package包/类
@Override
public void renderElement(LookupElementPresentation presentation) {
super.renderElement(presentation);
char shortcut = getTemplateShortcut();
presentation.setItemText(getItemText());
if (sudden) {
presentation.setItemTextBold(true);
if (!presentation.isReal() || !((RealLookupElementPresentation)presentation).isLookupSelectionTouched()) {
if (shortcut == TemplateSettings.DEFAULT_CHAR) {
shortcut = TemplateSettings.getInstance().getDefaultShortcutChar();
}
presentation.setTypeText(" [" + KeyEvent.getKeyText(shortcut) + "] ");
}
if (StringUtil.isNotEmpty(myDescription)) {
presentation.setTailText(" (" + myDescription + ")", true);
}
}
else {
presentation.setTypeText(myDescription);
}
}
示例8: renderElement
import com.intellij.codeInsight.lookup.LookupElementPresentation; //导入方法依赖的package包/类
@Override
public void renderElement(LookupElementPresentation presentation)
{
super.renderElement(presentation);
final LookupElementPresentation qualifierPresentation = new LookupElementPresentation();
myQualifier.renderElement(qualifierPresentation);
String name = maybeAddParentheses(qualifierPresentation.getItemText());
final String qualifierText = myQualifier.as(CastingLookupElementDecorator.CLASS_CONDITION_KEY) != null ? "(" + name + ")" : name;
presentation.setItemText(qualifierText + "." + presentation.getItemText());
if(myQualifier instanceof JavaPsiClassReferenceElement)
{
String locationString = ((JavaPsiClassReferenceElement) myQualifier).getLocationString();
presentation.setTailText(StringUtil.notNullize(presentation.getTailText()) + locationString);
}
}
示例9: renderElement
import com.intellij.codeInsight.lookup.LookupElementPresentation; //导入方法依赖的package包/类
@Override
public void renderElement(LookupElementPresentation presentation) {
super.renderElement(presentation);
presentation.setItemText(name);
presentation.setTailText("/", true);
presentation.setIcon(icon);
}
示例10: renderElement
import com.intellij.codeInsight.lookup.LookupElementPresentation; //导入方法依赖的package包/类
@Override
public void renderElement(LookupElementPresentation presentation) {
presentation.setIcon(myFile.getIcon(0));
presentation.setItemText(myName);
presentation.setItemTextBold(true);
if (myTail != null) {
presentation.setTailText(myTail, true);
}
presentation.setTypeText("View");
presentation.setTypeGrayed(true);
}
示例11: renderElement
import com.intellij.codeInsight.lookup.LookupElementPresentation; //导入方法依赖的package包/类
public void renderElement(LookupElement element, LookupElementPresentation presentation) {
Suggestion suggestion = (Suggestion) element.getObject();
if (suggestion.icon != null) {
presentation.setIcon(suggestion.icon);
}
presentation.setStrikeout(suggestion.deprecationLevel != null);
if (suggestion.deprecationLevel != null) {
if (suggestion.deprecationLevel == SpringConfigurationMetadataDeprecationLevel.error) {
presentation.setItemTextForeground(RED);
} else {
presentation.setItemTextForeground(YELLOW);
}
}
String lookupString = element.getLookupString();
presentation.setItemText(lookupString);
if (!lookupString.equals(suggestion.suggestion)) {
presentation.setItemTextBold(true);
}
String shortDescription;
if (suggestion.defaultValue != null) {
shortDescription = shortenTextWithEllipsis(suggestion.defaultValue, 60, 0, true);
TextAttributes attrs =
EditorColorsManager.getInstance().getGlobalScheme().getAttributes(SCALAR_TEXT);
presentation.setTailText("=" + shortDescription, attrs.getForegroundColor());
}
if (suggestion.description != null) {
presentation.appendTailText(
" (" + Util.getFirstSentenceWithoutDot(suggestion.description) + ")", true);
}
if (suggestion.shortType != null) {
presentation.setTypeText(suggestion.shortType);
}
}
示例12: renderElement
import com.intellij.codeInsight.lookup.LookupElementPresentation; //导入方法依赖的package包/类
@Override
public void renderElement(LookupElementPresentation presentation) {
presentation.setItemText(translation.getIndex() + " ");
presentation.setTailText(getLookupString(), true);
presentation.setIcon(TYPO3CMSIcons.TYPO3_ICON);
presentation.setTypeText("EXT:" + translation.getExtension());
presentation.setTypeGrayed(true);
}
示例13: renderElement
import com.intellij.codeInsight.lookup.LookupElementPresentation; //导入方法依赖的package包/类
@Override
public void renderElement(LookupElementPresentation presentation) {
presentation.setIcon(myMethod.getIcon(Iconable.ICON_FLAG_VISIBILITY));
presentation.setItemText(myMethod.getName());
presentation.setTailText(PsiFormatUtil.formatMethod(myMethod,
PsiSubstitutor.EMPTY,
PsiFormatUtil.SHOW_PARAMETERS,
PsiFormatUtil.SHOW_NAME | PsiFormatUtil.SHOW_TYPE));
final PsiType returnType = myMethod.getReturnType();
if (returnType != null) {
presentation.setTypeText(returnType.getCanonicalText());
}
}
示例14: renderElement
import com.intellij.codeInsight.lookup.LookupElementPresentation; //导入方法依赖的package包/类
@Override
public void renderElement(LookupElementPresentation presentation) {
final PsiClass psiClass = getPsiClass();
if (psiClass != null) {
presentation.setIcon(presentation.isReal() ? psiClass.getIcon(Iconable.ICON_FLAG_VISIBILITY) : EMPTY_ICON);
presentation.setTailText(" (" + PsiFormatUtil.getPackageDisplayName(psiClass) + ")", true);
}
final PsiType type = getPsiType();
presentation.setItemText(type.getPresentableText());
presentation.setItemTextBold(type instanceof PsiPrimitiveType);
}
示例15: renderElement
import com.intellij.codeInsight.lookup.LookupElementPresentation; //导入方法依赖的package包/类
@Override
public void renderElement(LookupElementPresentation presentation) {
myTypeItems.get(0).renderElement(presentation);
presentation.setItemText(getLookupString());
if (myTypeItems.size() > 1) {
presentation.setTailText(null);
presentation.setTypeText(null);
}
}