Uses of Interface
org.jdesktop.swingx.decorator.Highlighter

Packages that use Highlighter
org.jdesktop.swingx Contains extensions to the Swing GUI toolkit, including new and enhanced components that provide functionality commonly required by rich, data-centric client applications. 
org.jdesktop.swingx.decorator Contains API used to implement coordinated sorting, filtering, and highlighting of the extended Swing cell-rendering component classes JXTable, JXTreeTable, JXTree, and JXList. 
 

Uses of Highlighter in org.jdesktop.swingx
 

Fields in org.jdesktop.swingx declared as Highlighter
protected  Highlighter JXTable.resetDefaultTableCellRendererHighlighter
          The Highlighter used to hack around DefaultTableCellRenderer's color memory.
 

Methods in org.jdesktop.swingx that return Highlighter
 Highlighter[] JXTree.getHighlighters()
          Returns the Highlighters used by this tree.
 Highlighter[] JXTable.getHighlighters()
          Returns the Highlighters used by this table.
 Highlighter[] JXList.getHighlighters()
          Returns the Highlighters used by this list.
 

Methods in org.jdesktop.swingx with parameters of type Highlighter
 void JXTree.addHighlighter(Highlighter highlighter)
          Adds a Highlighter.
 void JXTable.addHighlighter(Highlighter highlighter)
          Adds a Highlighter.
 void JXList.addHighlighter(Highlighter highlighter)
          Adds a Highlighter.
 void JXTree.removeHighlighter(Highlighter highlighter)
          Removes the given Highlighter.
 void JXTable.removeHighlighter(Highlighter highlighter)
          Removes the given Highlighter.
 void JXList.removeHighlighter(Highlighter highlighter)
          Removes the given Highlighter.
 void JXTree.setHighlighters(Highlighter... highlighters)
          Sets the Highlighters to the table, replacing any old settings.
 void JXTable.setHighlighters(Highlighter... highlighters)
          Sets the Highlighters to the table, replacing any old settings.
 void JXList.setHighlighters(Highlighter... highlighters)
          Sets the Highlighters to the list, replacing any old settings.
 

Uses of Highlighter in org.jdesktop.swingx.decorator
 

Classes in org.jdesktop.swingx.decorator that implement Highlighter
 class AbstractHighlighter
          Abstract Highlighter implementation which manages notification and highlights conditionally, controlled by a HighlightPredicate.
 class AlternateRowHighlighter
          Deprecated. use HighlighterFactory instead
static class AlternateRowHighlighter.UIAlternateRowHighlighter
          Deprecated. use HighlighterFactory.UIColorHighlighter
 class ColorHighlighter
          TODO add type doc
 class CompoundHighlighter
          A class which manages the lists of Highlighters.
 class ConditionalHighlighter
          Deprecated. use a AbstractHighlighter with HighlightPredicate instead
 class HierarchicalColumnHighlighter
          Deprecated. use a ColorHighlighter with a ColumnHighlightPredicate.
static class HighlighterFactory.UIColorHighlighter
          A ColorHighlighter with UI-dependent background.
 class LegacyHighlighter
          Deprecated. use ColorHighligher instead
 class PainterHighlighter
          Highlighter implementation which uses Painter.
 class PatternHighlighter
          Deprecated. use AbstractHighlighter with PatternPredicate
 class ResetDTCRColorHighlighter
          This is a hack around DefaultTableCellRenderer color "memory", see Issue #258-swingx.
 class RolloverHighlighter
          Deprecated. use AbstractHighlighter with HighlightPredicate.ROLLOVER_ROW
 class SearchHighlighter
          Deprecated. use AbstractHighligther with SearchPredicate
 class ShadingColorHighlighter
          Experimental replacement of HierarchicalColumnHighligher.
 

Fields in org.jdesktop.swingx.decorator declared as Highlighter
static Highlighter[] CompoundHighlighter.EMPTY_HIGHLIGHTERS
           
 

Fields in org.jdesktop.swingx.decorator with type parameters of type Highlighter
protected  List<Highlighter> CompoundHighlighter.highlighters
           
 

Methods in org.jdesktop.swingx.decorator that return Highlighter
static Highlighter HighlighterFactory.createAlternateStriping()
          Creates and returns a Highlighter which highlights with alternate background.
static Highlighter HighlighterFactory.createAlternateStriping(Color baseBackground, Color alternateBackground)
          Creates and returns a Highlighter which highlights with alternating background, starting with the base.
static Highlighter HighlighterFactory.createAlternateStriping(Color baseBackground, Color alternateBackground, int linesPerStripe)
          Creates and returns a Highlighter which highlights with alternating background, starting with the base.
static Highlighter HighlighterFactory.createAlternateStriping(int rowsPerGroup)
          Creates and returns a Highlighter which highlights with alternate background.
static Highlighter HighlighterFactory.createSimpleStriping()
          Creates and returns a Highlighter which highlights every second row background with a color depending on the LookAndFeel.
static Highlighter HighlighterFactory.createSimpleStriping(Color stripeBackground)
          Creates and returns a Highlighter which highlights every second row background with the given color.
static Highlighter HighlighterFactory.createSimpleStriping(Color stripeBackground, int rowsPerGroup)
          Creates and returns a Highlighter which highlights every second row group background with the given color.
static Highlighter HighlighterFactory.createSimpleStriping(int rowsPerGroup)
          Creates and returns a Highlighter which highlights every second row group background with a color depending on LF.
 Highlighter[] CompoundHighlighter.getHighlighters()
           
 

Methods in org.jdesktop.swingx.decorator with parameters of type Highlighter
 void CompoundHighlighter.addHighlighter(Highlighter highlighter)
          Appends a highlighter to the pipeline.
 void CompoundHighlighter.addHighlighter(Highlighter highlighter, boolean prepend)
          Adds a highlighter to the pipeline.
 void CompoundHighlighter.removeHighlighter(Highlighter hl)
          Removes a highlighter from the pipeline.
 

Constructors in org.jdesktop.swingx.decorator with parameters of type Highlighter
CompoundHighlighter(Highlighter... inList)
          Instantiates a CompoundHighlighter containing the given Highlighters.