当前位置: 首页>>代码示例>>Java>>正文


Java LookupElementPresentation.setTypeText方法代码示例

本文整理汇总了Java中com.intellij.codeInsight.lookup.LookupElementPresentation.setTypeText方法的典型用法代码示例。如果您正苦于以下问题:Java LookupElementPresentation.setTypeText方法的具体用法?Java LookupElementPresentation.setTypeText怎么用?Java LookupElementPresentation.setTypeText使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.intellij.codeInsight.lookup.LookupElementPresentation的用法示例。


在下文中一共展示了LookupElementPresentation.setTypeText方法的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);
    }
}
 
开发者ID:nvlad,项目名称:yii2support,代码行数:22,代码来源:MessageLookupElement.java

示例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);
            }
        }

    }
 
开发者ID:Haehnchen,项目名称:idea-php-toolbox,代码行数:21,代码来源:JsonParseUtil.java

示例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());

  }
}
 
开发者ID:lshain-android-source,项目名称:tools-idea,代码行数:19,代码来源:LiveTemplateLookupElement.java

示例4: renderElement

import com.intellij.codeInsight.lookup.LookupElementPresentation; //导入方法依赖的package包/类
public void renderElement(LookupElementPresentation presentation) {

        if(this.useClassNameAsLookupString) {
            presentation.setItemText(className.getPresentableFQN());
            presentation.setTypeText(getLookupString());
        } else {
            presentation.setItemText(getLookupString());
            presentation.setTypeText(className.getPresentableFQN());
        }

        presentation.setTypeGrayed(true);
        if(isWeak) {
            // @TODO: remove weak
            presentation.setIcon(getWeakIcon());
        } else {
            presentation.setIcon(getIcon());
        }


    }
 
开发者ID:Haehnchen,项目名称:idea-php-symfony2-plugin,代码行数:21,代码来源:DoctrineEntityLookupElement.java

示例5: 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);
}
 
开发者ID:nvlad,项目名称:yii2support,代码行数:12,代码来源:ViewLookupElement.java

示例6: 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);
  }
}
 
开发者ID:1tontech,项目名称:intellij-spring-assistant,代码行数:39,代码来源:Suggestion.java

示例7: renderElement

import com.intellij.codeInsight.lookup.LookupElementPresentation; //导入方法依赖的package包/类
@Override
public void renderElement(LookupElementPresentation presentation) {
    presentation.setItemText(getLookupString());
    presentation.setIcon(TYPO3CMSIcons.ROUTE_ICON);
    presentation.setTypeText(route.getController());
    presentation.setTypeGrayed(true);
}
 
开发者ID:cedricziel,项目名称:idea-php-typo3-plugin,代码行数:8,代码来源:RouteLookupElement.java

示例8: 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);
}
 
开发者ID:cedricziel,项目名称:idea-php-typo3-plugin,代码行数:9,代码来源:TranslationLookupElement.java

示例9: renderElement

import com.intellij.codeInsight.lookup.LookupElementPresentation; //导入方法依赖的package包/类
@Override
public void renderElement(LookupElementPresentation presentation) {
    presentation.setItemText(icon.getName());
    presentation.setIcon(iconFromIconInterface(icon));
    presentation.setTypeText(icon.getExtensionKey());
    presentation.setTypeGrayed(true);
}
 
开发者ID:cedricziel,项目名称:idea-php-typo3-plugin,代码行数:8,代码来源:IconLookupElement.java

示例10: renderElement

import com.intellij.codeInsight.lookup.LookupElementPresentation; //导入方法依赖的package包/类
@Override
public void renderElement(final LookupElementPresentation presentation) {
    final Parameter[] methodParameters = method.getParameters();
    final Parameter[] methodParametersWithoutBuilder = (methodParameters.length >= 1)
                                                       ? Arrays.copyOfRange(methodParameters, 1, methodParameters.length)
                                                       : methodParameters;

    presentation.setItemText(lookupString);
    presentation.setIcon(PhpIcons.METHOD);
    presentation.setTypeText(LaravelClasses.ELOQUENT_BUILDER.toString().substring(1));
    presentation.setTypeGrayed(false);
    presentation.appendTailText(PhpPresentationUtil.formatParameters(null, methodParametersWithoutBuilder).toString(), true);
}
 
开发者ID:rentalhost,项目名称:laravel-insight,代码行数:14,代码来源:ScopeCompletionContributor.java

示例11: renderElement

import com.intellij.codeInsight.lookup.LookupElementPresentation; //导入方法依赖的package包/类
@Override
public void renderElement(LookupElementPresentation presentation)
{
    presentation.setTypeText(setting.getType());
    presentation.setItemText(getLookupString());

    String defaultValue = setting.getDefaultValue();

    if (defaultValue.length() != 0)
    {
        presentation.appendTailTextItalic(" (" + defaultValue + ") ", true);
    }

    super.renderElement(presentation);
}
 
开发者ID:whitefire,项目名称:roc-completion,代码行数:16,代码来源:SettingLookupElement.java

示例12: 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());
  }
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:14,代码来源:SimpleMethodCallLookupElement.java

示例13: renderElement

import com.intellij.codeInsight.lookup.LookupElementPresentation; //导入方法依赖的package包/类
public void renderElement(LookupElementPresentation presentation, boolean showClass, boolean showPackage, PsiSubstitutor substitutor) {
  final String className = myContainingClass == null ? "???" : myContainingClass.getName();

  final String memberName = myMember.getName();
  if (showClass && StringUtil.isNotEmpty(className)) {
    presentation.setItemText(className + "." + memberName);
  } else {
    presentation.setItemText(memberName);
  }

  final String qname = myContainingClass == null ? "" : myContainingClass.getQualifiedName();
  String pkg = qname == null ? "" : StringUtil.getPackageName(qname);
  String location = showPackage && StringUtil.isNotEmpty(pkg) ? " (" + pkg + ")" : "";

  final String params = myMergedOverloads
                        ? "(...)"
                        : myMember instanceof PsiMethod
                          ? PsiFormatUtil.formatMethod((PsiMethod)myMember, substitutor,
                                                       PsiFormatUtilBase.SHOW_PARAMETERS,
                                                       PsiFormatUtilBase.SHOW_NAME | PsiFormatUtilBase.SHOW_TYPE)
                          : "";
  presentation.clearTail();
  presentation.appendTailText(params, false);
  if (myShouldImport && StringUtil.isNotEmpty(className)) {
    presentation.appendTailText(" in " + className + location, true);
  } else {
    presentation.appendTailText(location, true);
  }

  final PsiType type = myMember instanceof PsiMethod ? ((PsiMethod)myMember).getReturnType() : ((PsiField) myMember).getType();
  if (type != null) {
    presentation.setTypeText(substitutor.substitute(type).getPresentableText());
  }
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:35,代码来源:MemberLookupHelper.java

示例14: 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);
  }
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:10,代码来源:TypeArgumentCompletionProvider.java

示例15: renderElement

import com.intellij.codeInsight.lookup.LookupElementPresentation; //导入方法依赖的package包/类
@Override
public void renderElement(final LookupItem item, final Object element, final LookupElementPresentation presentation) {
  presentation.setIcon(DefaultLookupItemRenderer.getRawIcon(item, presentation.isReal()));

  presentation.setItemText(PsiUtilCore.getName((PsiElement)element));
  presentation.setStrikeout(isToStrikeout(item));

  presentation.setTailText((String)item.getAttribute(LookupItem.TAIL_TEXT_ATTR), item.getAttribute(LookupItem.TAIL_TEXT_SMALL_ATTR) != null);

  PsiType type = ((BeanPropertyElement)element).getPropertyType();
  presentation.setTypeText(type == null ? null : type.getPresentableText());
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:13,代码来源:JavaElementLookupRenderer.java


注:本文中的com.intellij.codeInsight.lookup.LookupElementPresentation.setTypeText方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。