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


Java TextAttributesKey.getExternalName方法代码示例

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


在下文中一共展示了TextAttributesKey.getExternalName方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: SchemeTextAttributesDescription

import com.intellij.openapi.editor.colors.TextAttributesKey; //导入方法依赖的package包/类
private SchemeTextAttributesDescription(String name, String group, @NotNull TextAttributesKey key, @NotNull MyColorScheme  scheme, Icon icon,
                                       String toolTip) {
  super(name, group,
        getInitialAttributes(scheme, key).clone(),
        key, scheme, icon, toolTip);
  this.key = key;
  myInitialAttributes = getInitialAttributes(scheme, key);
  TextAttributesKey fallbackKey = key.getFallbackAttributeKey();
  if (fallbackKey != null) {
    myFallbackAttributes = scheme.getAttributes(fallbackKey);
    myBaseAttributeDescriptor = ColorSettingsPages.getInstance().getAttributeDescriptor(fallbackKey);
    if (myBaseAttributeDescriptor == null) {
      myBaseAttributeDescriptor =
        new Pair<ColorSettingsPage, AttributesDescriptor>(null, new AttributesDescriptor(fallbackKey.getExternalName(), fallbackKey));
    }
  }
  myIsInheritedInitial = scheme.isInherited(key);
  setInherited(myIsInheritedInitial);
  if (myIsInheritedInitial) {
    setInheritedAttributes(getTextAttributes());
  }
  initCheckedStatus();
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:24,代码来源:ColorAndFontOptions.java

示例2: TextAttributesDescription

import com.intellij.openapi.editor.colors.TextAttributesKey; //导入方法依赖的package包/类
public TextAttributesDescription(@NotNull String name,
                                 String group,
                                 TextAttributes attributes,
                                 TextAttributesKey type,
                                 EditorColorsScheme scheme, Icon icon, final String toolTip) {
  super(name, group, type == null ? null : type.getExternalName(), scheme, icon, toolTip);
  myAttributes = attributes;
  initCheckedStatus();
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:10,代码来源:TextAttributesDescription.java

示例3: createSuccessAnnotation

import com.intellij.openapi.editor.colors.TextAttributesKey; //导入方法依赖的package包/类
void createSuccessAnnotation(@NotNull PsiElement element, @NotNull AnnotationHolder holder, @NotNull TextAttributesKey key) {
    holder.createInfoAnnotation(element, null).setEnforcedTextAttributes(TextAttributes.ERASE_MARKER);
    String description = ApplicationManager.getApplication().isUnitTestMode() ? key.getExternalName() : null;
    holder.createInfoAnnotation(element, description).setTextAttributes(key);
}
 
开发者ID:CouleeApps,项目名称:TS-IJ,代码行数:6,代码来源:TSAnnotator.java


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