本文整理汇总了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();
}
示例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();
}
示例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);
}