Uses of Interface
org.jdesktop.swingx.decorator.Highlighter
Packages that use Highlighter
Package
Description
Contains extensions to the Swing GUI toolkit, including new and enhanced
components that provide functionality commonly required by rich,
data-centric client applications.
Contains API used to implement coordinated sorting, filtering
and highlighting of the extended Swing cell-rendering component
classes JXTable, JXTreeTable, JXTree, and JXList.
Contains API required by the extended JTable component, JXTable.
-
Uses of Highlighter in org.jdesktop.swingx
Fields in org.jdesktop.swingx declared as HighlighterModifier and TypeFieldDescriptionprotected Highlighter
The Highlighter used to hack around DefaultTableCellRenderer's color memory.Methods in org.jdesktop.swingx that return HighlighterModifier and TypeMethodDescriptionJXComboBox.getHighlighters()
Returns theHighlighter
s used by this column.JXList.getHighlighters()
Returns theHighlighter
s used by this list.JXTable.getHighlighters()
Returns theHighlighter
s used by this table.JXTree.getHighlighters()
Returns theHighlighter
s used by this tree.Methods in org.jdesktop.swingx with parameters of type HighlighterModifier and TypeMethodDescriptionvoid
JXComboBox.addHighlighter
(Highlighter highlighter) Adds a Highlighter.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
JXComboBox.removeHighlighter
(Highlighter highlighter) Removes the given Highlighter.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
JXComboBox.setHighlighters
(Highlighter... highlighters) Sets theHighlighter
s to the column, replacing any old settings.void
JXList.setHighlighters
(Highlighter... highlighters) Sets theHighlighter
s to the list, 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 tree, replacing any old settings. -
Uses of Highlighter in org.jdesktop.swingx.decorator
Classes in org.jdesktop.swingx.decorator that implement HighlighterModifier and TypeClassDescriptionclass
AbstractHighlighter
implementation which manages change notification and supports conditional highlighting.class
A Highlighter which sets the horizontal alignment.class
A Highlighter that applies a border to the renderer component.class
A Highlighter to modify component colors.class
A Highlighter which applies the ComponentOrientation to the component.class
A class which manages the lists ofHighlighter
s.class
A Highlighter which sets the enabled property.class
A Highlighter which sets the Font of the component.static class
A ColorHighlighter with UI-dependent background.class
Highlighter which decorates by setting the icon property of a JLabel.class
Highlighter implementation which uses a Painter to decorate the component.class
This is a hack around DefaultTableCellRenderer color "memory", see Issue #258-swingx.class
Experimental replacement of HierarchicalColumnHighligher.class
A highlighter for setting a tool tip on the component.Fields in org.jdesktop.swingx.decorator declared as HighlighterModifier and TypeFieldDescriptionstatic final Highlighter[]
CompoundHighlighter.EMPTY_HIGHLIGHTERS
TODO docFields in org.jdesktop.swingx.decorator with type parameters of type HighlighterModifier and TypeFieldDescriptionprotected List<Highlighter>
CompoundHighlighter.highlighters
TODO docMethods in org.jdesktop.swingx.decorator that return HighlighterModifier and TypeMethodDescriptionstatic 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. the first Color.WHITE, the second with the color depending on LF.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.createComputedForegroundHighlighter()
Creates a highlighter that sets the foreground color to WHITE or BLACK by computing the best match based on the current background color.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
(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.CompoundHighlighter.getHighlighters()
Returns an array of contained Highlighters.Methods in org.jdesktop.swingx.decorator with parameters of type HighlighterModifier and TypeMethodDescriptionvoid
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 HighlighterModifierConstructorDescriptionCompoundHighlighter
(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.search
Methods in org.jdesktop.swingx.search that return HighlighterModifier and TypeMethodDescriptionprotected abstract Highlighter[]
AbstractSearchable.getHighlighters()
Returns the highlighters registered on the search target.protected Highlighter[]
ListSearchable.getHighlighters()
protected Highlighter[]
TableSearchable.getHighlighters()
Returns the highlighters registered on the search target.protected Highlighter[]
TreeSearchable.getHighlighters()
Methods in org.jdesktop.swingx.search with parameters of type HighlighterModifier and TypeMethodDescriptionprotected abstract void
AbstractSearchable.addHighlighter
(Highlighter highlighter) Adds the highlighter to the target.protected void
ListSearchable.addHighlighter
(Highlighter highlighter) protected void
TableSearchable.addHighlighter
(Highlighter highlighter) Adds the highlighter to the target.protected void
TreeSearchable.addHighlighter
(Highlighter highlighter) protected void
AbstractSearchable.ensureInsertedSearchHighlighters
(Highlighter highlighter) Ensure that the given Highlighter is the last in the list of the highlighters registered on the target.protected abstract void
AbstractSearchable.removeHighlighter
(Highlighter searchHighlighter) Removes the highlighter.protected void
ListSearchable.removeHighlighter
(Highlighter searchHighlighter) protected void
TableSearchable.removeHighlighter
(Highlighter searchHighlighter) Removes the highlighter.protected void
TreeSearchable.removeHighlighter
(Highlighter searchHighlighter) -
Uses of Highlighter in org.jdesktop.swingx.table
Methods in org.jdesktop.swingx.table that return HighlighterModifier and TypeMethodDescriptionTableColumnExt.getHighlighters()
Returns theHighlighter
s used by this table.Methods in org.jdesktop.swingx.table with parameters of type HighlighterModifier and TypeMethodDescriptionvoid
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.