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


Java LookupElementPresentation.setIcon方法代码示例

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


在下文中一共展示了LookupElementPresentation.setIcon方法的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包/类
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

示例4: 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);
}
 
开发者ID:nvlad,项目名称:yii2support,代码行数:9,代码来源:DirectoryLookupElement.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包/类
@Override
public void renderElement(LookupElementPresentation presentation) {
    super.renderElement(presentation);

    if (myCategory instanceof PsiFile) {
        PsiFile file = (PsiFile) myCategory;
        String filename = file.getName();
        presentation.setIcon(file.getIcon(0));
        presentation.setItemText(filename.substring(0, filename.lastIndexOf(".")));
    }
}
 
开发者ID:nvlad,项目名称:yii2support,代码行数:12,代码来源:CategoryLookupElement.java

示例7: 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

示例8: 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

示例9: 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

示例10: 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

示例11: 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

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

示例14: 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

示例15: renderElement

import com.intellij.codeInsight.lookup.LookupElementPresentation; //导入方法依赖的package包/类
@Override
public void renderElement(LookupElementPresentation presentation) {
  presentation.setItemText(getLookupString());
  presentation.setIcon(myExpr.getIcon(0));
  String pkg = StringUtil.getPackageName(myCanonicalText);
  if (StringUtil.isNotEmpty(pkg)) {
    presentation.setTailText(" (" + pkg + ")", true);
  }
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:10,代码来源:ClassLiteralLookupElement.java


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