|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
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. |
org.jdesktop.swingx.table | Contains API required by the extended JTable component, JXTable. |
Uses of Highlighter in org.jdesktop.swingx |
---|
Methods in org.jdesktop.swingx that return Highlighter | |
---|---|
Highlighter[] |
JXTree.getHighlighters()
Returns the Highlighter s used by this table. |
Highlighter[] |
JXTable.getHighlighters()
Returns the Highlighter s used by this table. |
Highlighter[] |
JXList.getHighlighters()
Returns the Highlighter s used by this table. |
Methods in org.jdesktop.swingx with parameters of type Highlighter | |
---|---|
void |
JXTree.addHighlighter(Highlighter highlighter)
Appends a Highlighter to the end of the list of used
Highlighter s. |
void |
JXTable.addHighlighter(Highlighter highlighter)
Appends a Highlighter to the end of the list of used
Highlighter s. |
void |
JXList.addHighlighter(Highlighter highlighter)
Appends a Highlighter to the end of the list of used
Highlighter s. |
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 Highlighter s to the table, replacing any old settings. |
void |
JXTable.setHighlighters(Highlighter... highlighters)
Sets the Highlighter s to the table, replacing any old settings. |
void |
JXList.setHighlighters(Highlighter... highlighters)
Sets the Highlighter 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 | |
---|---|
class |
AbstractHighlighter
Abstract Highlighter 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 of Highlighter 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 | |
---|---|
static Highlighter[] |
CompoundHighlighter.EMPTY_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(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.createAlternateStriping(int rowsPerGroup)
Creates and returns a Highlighter which highlights with alternate background. the first Color.WHITE, the second with the color depending on LF. |
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(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. |
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()
Returns an array of contained Highlighters. |
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. |
void |
CompoundHighlighter.setHighlighters(Highlighter... inList)
Sets the given Highlighter s. |
Constructors in org.jdesktop.swingx.decorator with parameters of type Highlighter | |
---|---|
CompoundHighlighter(Highlighter... inList)
Instantiates a CompoundHighlighter containing the given Highlighter s. |
|
CompoundHighlighter(HighlightPredicate predicate,
Highlighter... inList)
Instantiates a CompoundHighlighter with the given predicate containing the given Highlighter s. |
Uses of Highlighter in org.jdesktop.swingx.table |
---|
Methods in org.jdesktop.swingx.table that return Highlighter | |
---|---|
Highlighter[] |
TableColumnExt.getHighlighters()
Returns the Highlighter s used by this table. |
Methods in org.jdesktop.swingx.table with parameters of type Highlighter | |
---|---|
void |
TableColumnExt.addHighlighter(Highlighter highlighter)
Appends a Highlighter to the end of the list of used
Highlighter s. |
void |
TableColumnExt.removeHighlighter(Highlighter highlighter)
Removes the given Highlighter. |
void |
TableColumnExt.setHighlighters(Highlighter... highlighters)
Sets the Highlighter s to the table, replacing any old settings. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |