Uses of Interface
org.jdesktop.swingx.decorator.Highlighter
-
Packages that use Highlighter Package Description 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.org.jdesktop.swingx.table Contains API required by the extended JTable component, JXTable. -
-
Uses of Highlighter in org.jdesktop.swingx
Fields in org.jdesktop.swingx declared as Highlighter Modifier and Type Field Description protected Highlighter
JXTable. resetDefaultTableCellRendererHighlighter
The Highlighter used to hack around DefaultTableCellRenderer's color memory.Methods in org.jdesktop.swingx that return Highlighter Modifier and Type Method Description Highlighter[]
JXList. getHighlighters()
Returns theHighlighter
s used by this table.Highlighter[]
JXTable. getHighlighters()
Returns theHighlighter
s used by this table.Highlighter[]
JXTree. getHighlighters()
Returns theHighlighter
s used by this table.Methods in org.jdesktop.swingx with parameters of type Highlighter Modifier and Type Method Description void
JXList. addHighlighter(Highlighter highlighter)
Appends aHighlighter
to the end of the list of usedHighlighter
s.void
JXTable. addHighlighter(Highlighter highlighter)
Appends aHighlighter
to the end of the list of usedHighlighter
s.void
JXTree. addHighlighter(Highlighter highlighter)
Appends aHighlighter
to the end of the list of usedHighlighter
s.void
JXList. removeHighlighter(Highlighter highlighter)
Removes the given Highlighter.void
JXTable. removeHighlighter(Highlighter highlighter)
Removes the given Highlighter.void
JXTree. removeHighlighter(Highlighter highlighter)
Removes the given Highlighter.void
JXList. setHighlighters(Highlighter... highlighters)
Sets theHighlighter
s to the table, replacing any old settings.void
JXTable. setHighlighters(Highlighter... highlighters)
Sets theHighlighter
s to the table, replacing any old settings.void
JXTree. setHighlighters(Highlighter... highlighters)
Sets theHighlighter
s to the table, replacing any old settings. -
Uses of Highlighter in org.jdesktop.swingx.decorator
Classes in org.jdesktop.swingx.decorator that implement Highlighter Modifier and Type Class Description class
AbstractHighlighter
AbstractHighlighter
implementation which manages change notification and supports conditional highlighting.class
BorderHighlighter
A Highlighter that applies a border the the renderer component.class
ColorHighlighter
A Highlighter to modify component colors.class
CompoundHighlighter
A class which manages the lists ofHighlighter
s.static class
HighlighterFactory.UIColorHighlighter
A ColorHighlighter with UI-dependent background.class
IconHighlighter
Highlighter which decorates by setting the icon property of a label.class
PainterHighlighter
Highlighter implementation which uses a Painter to decorate the component.class
ResetDTCRColorHighlighter
This is a hack around DefaultTableCellRenderer color "memory", see Issue #258-swingx.class
ShadingColorHighlighter
Experimental replacement of HierarchicalColumnHighligher.Fields in org.jdesktop.swingx.decorator declared as Highlighter Modifier and Type Field Description static Highlighter[]
CompoundHighlighter. EMPTY_HIGHLIGHTERS
Fields in org.jdesktop.swingx.decorator with type parameters of type Highlighter Modifier and Type Field Description protected java.util.List<Highlighter>
CompoundHighlighter. highlighters
Methods in org.jdesktop.swingx.decorator that return Highlighter Modifier and Type Method Description static Highlighter
HighlighterFactory. createAlternateStriping()
Creates and returns a Highlighter which highlights with alternate background.static Highlighter
HighlighterFactory. createAlternateStriping(int rowsPerGroup)
Creates and returns a Highlighter which highlights with alternate background.static Highlighter
HighlighterFactory. createAlternateStriping(java.awt.Color baseBackground, java.awt.Color alternateBackground)
Creates and returns a Highlighter which highlights with alternating background, starting with the base.static Highlighter
HighlighterFactory. createAlternateStriping(java.awt.Color baseBackground, java.awt.Color alternateBackground, int linesPerStripe)
Creates and returns a Highlighter which highlights with alternating background, starting with the base.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(int rowsPerGroup)
Creates and returns a Highlighter which highlights every second row group background with a color depending on LF.static Highlighter
HighlighterFactory. createSimpleStriping(java.awt.Color stripeBackground)
Creates and returns a Highlighter which highlights every second row background with the given color.static Highlighter
HighlighterFactory. createSimpleStriping(java.awt.Color stripeBackground, int rowsPerGroup)
Creates and returns a Highlighter which highlights every second row group background with the given color.Highlighter[]
CompoundHighlighter. getHighlighters()
Returns an array of contained Highlighters.Methods in org.jdesktop.swingx.decorator with parameters of type Highlighter Modifier and Type Method Description 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.void
CompoundHighlighter. setHighlighters(Highlighter... inList)
Sets the givenHighlighter
s.Constructors in org.jdesktop.swingx.decorator with parameters of type Highlighter Constructor Description CompoundHighlighter(Highlighter... inList)
Instantiates a CompoundHighlighter containing the givenHighlighter
s.CompoundHighlighter(HighlightPredicate predicate, Highlighter... inList)
Instantiates a CompoundHighlighter with the given predicate containing the givenHighlighter
s. -
Uses of Highlighter in org.jdesktop.swingx.table
Methods in org.jdesktop.swingx.table that return Highlighter Modifier and Type Method Description Highlighter[]
TableColumnExt. getHighlighters()
Returns theHighlighter
s used by this table.Methods in org.jdesktop.swingx.table with parameters of type Highlighter Modifier and Type Method Description void
TableColumnExt. addHighlighter(Highlighter highlighter)
Appends aHighlighter
to the end of the list of usedHighlighter
s.void
TableColumnExt. removeHighlighter(Highlighter highlighter)
Removes the given Highlighter.void
TableColumnExt. setHighlighters(Highlighter... highlighters)
Sets theHighlighter
s to the table, replacing any old settings.
-