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


Java TextAttributesKey.getFallbackAttributeKey方法代码示例

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


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

示例1: getAttributes

import com.intellij.openapi.editor.colors.TextAttributesKey; //导入方法依赖的package包/类
@Override
public TextAttributes getAttributes(TextAttributesKey key) {
  if (key != null) {
    TextAttributesKey fallbackKey = key.getFallbackAttributeKey();
    TextAttributes attributes = getDirectlyDefinedAttributes(key);
    if (fallbackKey == null) {
      if (containsValue(attributes)) return attributes;
    }
    else {
      if (containsValue(attributes) && !attributes.isFallbackEnabled()) return attributes;
      attributes = getFallbackAttributes(fallbackKey);
      if (containsValue(attributes)) return attributes;
    }
  }
  return myParentScheme.getAttributes(key);
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:17,代码来源:EditorColorsSchemeImpl.java

示例2: isHighlightedAsComment

import com.intellij.openapi.editor.colors.TextAttributesKey; //导入方法依赖的package包/类
public static boolean isHighlightedAsComment(TextAttributesKey... keys) {
  for (TextAttributesKey key : keys) {
    if (key == DefaultLanguageHighlighterColors.DOC_COMMENT ||
        key == SyntaxHighlighterColors.DOC_COMMENT ||
        key == DefaultLanguageHighlighterColors.LINE_COMMENT ||
        key == SyntaxHighlighterColors.LINE_COMMENT ||
        key == DefaultLanguageHighlighterColors.BLOCK_COMMENT ||
        key == SyntaxHighlighterColors.JAVA_BLOCK_COMMENT
      ) {
      return true;
    }
    if (key == null) continue;
    final TextAttributesKey fallbackAttributeKey = key.getFallbackAttributeKey();
    if (fallbackAttributeKey != null && isHighlightedAsComment(fallbackAttributeKey)) {
      return true;
    }
  }
  return false;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:20,代码来源:ChunkExtractor.java

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

示例4: isInherited

import com.intellij.openapi.editor.colors.TextAttributesKey; //导入方法依赖的package包/类
public boolean isInherited(TextAttributesKey key) {
  TextAttributesKey fallbackKey = key.getFallbackAttributeKey();
  if (fallbackKey != null) {
    if (myParentScheme instanceof AbstractColorsScheme) {
      TextAttributes ownAttrs = ((AbstractColorsScheme)myParentScheme).getDirectlyDefinedAttributes(key);
      if (ownAttrs != null) {
        return ownAttrs.isFallbackEnabled();
      }
    }
    TextAttributes attributes = getAttributes(key);
    if (attributes != null) {
      TextAttributes fallbackAttributes = getAttributes(fallbackKey);
      return attributes == fallbackAttributes;
    }
  }
  return false;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:18,代码来源:ColorAndFontOptions.java

示例5: getAttributes

import com.intellij.openapi.editor.colors.TextAttributesKey; //导入方法依赖的package包/类
@Override
@Nullable
public TextAttributes getAttributes(TextAttributesKey key) {
  if (key == null) return null;
  TextAttributes attrs = myAttributesMap.get(key);
  if (attrs == null) {
    if (key.getFallbackAttributeKey() != null) {
      attrs = getFallbackAttributes(key.getFallbackAttributeKey());
      if (attrs != null && !attrs.isFallbackEnabled()) return attrs;
    }
    attrs = key.getDefaultAttributes();
  }
  return attrs;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:15,代码来源:DefaultColorsScheme.java

示例6: isHighlightedAsString

import com.intellij.openapi.editor.colors.TextAttributesKey; //导入方法依赖的package包/类
public static boolean isHighlightedAsString(TextAttributesKey... keys) {
  for (TextAttributesKey key : keys) {
    if (key == DefaultLanguageHighlighterColors.STRING || key == SyntaxHighlighterColors.STRING) {
      return true;
    }
    if (key == null) continue;
    final TextAttributesKey fallbackAttributeKey = key.getFallbackAttributeKey();
    if (fallbackAttributeKey != null && isHighlightedAsString(fallbackAttributeKey)) {
      return true;
    }
  }
  return false;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:14,代码来源:ChunkExtractor.java


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