Uses of Class
com.intellij.openapi.editor.markup.TextAttributes

Packages that use TextAttributes
com.intellij.codeInsight.highlighting Provides interfaces for highlighting regions of text in the IDEA editor. 
com.intellij.execution.filters Provides interfaces for defining filters which perform highlighting and add hyperlinks to the text printed by the programs started from IDEA and displayed in the IDEA console view. 
com.intellij.execution.ui Provides interfaces for interacting with the "Run" tool window and the console view displayed in that tool window. 
com.intellij.openapi.editor.colors Provides interfaces for working with text editor color schemes. 
com.intellij.openapi.editor.markup Provides interfaces for highlighting the contents of the text editor and drawing additional decorations in the gutter (to the left of the editor) and the error stripe bar (to the right of the editor). 
com.intellij.openapi.vcs Provides interfaces for integrating IDEA with version control systems. 
com.intellij.psi.search Provides interfaces for searching references to elements, searching for classes and symbols by name, searching for TODO items and defining scope of searches. 
com.intellij.ui Provides assorted user interface components useful for developing IDEA plugins. 
com.intellij.usages Provides interfaces for working with the usage view tree. 
com.intellij.util.ui Provides assorted user interface components useful for developing IDEA plugins. 
 

Uses of TextAttributes in com.intellij.codeInsight.highlighting
 

Methods in com.intellij.codeInsight.highlighting with parameters of type TextAttributes
abstract  void HighlightManager.addElementsOccurrenceHighlights(Editor editor, PsiElement[] elements, TextAttributes attributes, boolean hideByTextChange, java.util.ArrayList<RangeHighlighter> highlightersVector)
           
protected abstract  void HighlightManager.addOccurrenceHighlight(Editor editor, int start, int end, TextAttributes attributes, int flags, java.util.ArrayList<RangeHighlighter> highlightersVector, java.awt.Color scrollmarkColor)
           
abstract  void HighlightManager.addOccurrenceHighlights(Editor editor, PsiElement[] elements, TextAttributes attributes, boolean hideByTextChange, java.util.ArrayList<RangeHighlighter> highlightersVector)
           
abstract  void HighlightManager.addOccurrenceHighlights(Editor editor, PsiReference[] occurrences, TextAttributes attributes, boolean hideByTextChange, java.util.ArrayList<RangeHighlighter> highlightersVector)
           
abstract  void HighlightManager.addRangeHighlight(Editor editor, int startOffset, int endOffset, TextAttributes attributes, boolean hideByTextChange, java.util.ArrayList<RangeHighlighter> highlighters)
           
 

Uses of TextAttributes in com.intellij.execution.filters
 

Fields in com.intellij.execution.filters declared as TextAttributes
 TextAttributes Filter.Result.highlightAttributes
           
 

Constructors in com.intellij.execution.filters with parameters of type TextAttributes
Filter.Result(int highlightStartOffset, int highlightEndOffset, HyperlinkInfo hyperlinkInfo, TextAttributes highlightAttributes)
           
 

Uses of TextAttributes in com.intellij.execution.ui
 

Methods in com.intellij.execution.ui that return TextAttributes
 TextAttributes ConsoleViewContentType.getAttributes()
           
 

Constructors in com.intellij.execution.ui with parameters of type TextAttributes
ConsoleViewContentType(java.lang.String name, TextAttributes textAttributes)
           
 

Uses of TextAttributes in com.intellij.openapi.editor.colors
 

Methods in com.intellij.openapi.editor.colors that return TextAttributes
 TextAttributes EditorColorsScheme.getAttributes(TextAttributesKey key)
           
 TextAttributes TextAttributesKey.getDefaultAttributes()
          Returns the default text attributes associated with the key.
 

Methods in com.intellij.openapi.editor.colors with parameters of type TextAttributes
static TextAttributesKey TextAttributesKey.createTextAttributesKey(java.lang.String externalName, TextAttributes defaultAttributes)
          Registers a text attribute key with the specified identifier and default attributes.
 void EditorColorsScheme.setAttributes(TextAttributesKey key, TextAttributes attributes)
           
 

Uses of TextAttributes in com.intellij.openapi.editor.markup
 

Methods in com.intellij.openapi.editor.markup that return TextAttributes
 TextAttributes TextAttributes.clone()
           
 TextAttributes RangeHighlighter.getTextAttributes()
          Returns the text attributes used for highlighting.
static TextAttributes TextAttributes.merge(TextAttributes under, TextAttributes above)
           
 

Methods in com.intellij.openapi.editor.markup with parameters of type TextAttributes
 RangeHighlighter MarkupModel.addLineHighlighter(int line, int layer, TextAttributes textAttributes)
          Adds a highlighter covering the specified line in the document.
 RangeHighlighter MarkupModel.addRangeHighlighter(int startOffset, int endOffset, int layer, TextAttributes textAttributes, HighlighterTargetArea targetArea)
          Adds a highlighter covering the specified range of the document, which can modify the attributes used for text rendering, add a gutter marker and so on.
static TextAttributes TextAttributes.merge(TextAttributes under, TextAttributes above)
           
 

Uses of TextAttributes in com.intellij.openapi.vcs
 

Methods in com.intellij.openapi.vcs with parameters of type TextAttributes
abstract  void ProjectLevelVcsManager.addMessageToConsoleWindow(java.lang.String message, TextAttributes attributes)
           
 

Uses of TextAttributes in com.intellij.psi.search
 

Methods in com.intellij.psi.search that return TextAttributes
 TextAttributes TodoAttributes.getTextAttributes()
           
 

Uses of TextAttributes in com.intellij.ui
 

Methods in com.intellij.ui that return TextAttributes
 TextAttributes SimpleTextAttributes.toTextAttributes()
           
 

Methods in com.intellij.ui with parameters of type TextAttributes
static SimpleTextAttributes SimpleTextAttributes.fromTextAttributes(TextAttributes attributes)
           
 

Uses of TextAttributes in com.intellij.usages
 

Methods in com.intellij.usages that return TextAttributes
 TextAttributes TextChunk.getAttributes()
           
 

Constructors in com.intellij.usages with parameters of type TextAttributes
TextChunk(TextAttributes attributesKey, java.lang.String text)
           
 

Uses of TextAttributes in com.intellij.util.ui
 

Methods in com.intellij.util.ui with parameters of type TextAttributes
 void EditorAdapter.appendString(java.lang.String string, TextAttributes attrs)