Uses of Class
org.jdesktop.swingx.decorator.FilterPipeline
-
Packages that use FilterPipeline 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. -
-
Uses of FilterPipeline in org.jdesktop.swingx
Fields in org.jdesktop.swingx declared as FilterPipeline Modifier and Type Field Description protected FilterPipeline
JXList. filters
The pipeline holding the filters.protected FilterPipeline
JXTable. filters
The FilterPipeline for the table.protected FilterPipeline
JXTree. filters
Methods in org.jdesktop.swingx that return FilterPipeline Modifier and Type Method Description FilterPipeline
JXList. getFilters()
FilterPipeline
JXTable. getFilters()
Returns the FilterPipeline for the table.Methods in org.jdesktop.swingx with parameters of type FilterPipeline Modifier and Type Method Description void
JXList. setFilters(FilterPipeline pipeline)
Sets the FilterPipeline for filtering the items of this list, maybe null to remove all previously applied filters.void
JXTable. setFilters(FilterPipeline pipeline)
Sets the FilterPipeline for filtering table rows, maybe null to remove all previously applied filters.void
JXTreeTable. setFilters(FilterPipeline pipeline)
overridden to do nothing. -
Uses of FilterPipeline in org.jdesktop.swingx.decorator
Fields in org.jdesktop.swingx.decorator declared as FilterPipeline Modifier and Type Field Description protected FilterPipeline
Filter. pipeline
Methods in org.jdesktop.swingx.decorator that return FilterPipeline Modifier and Type Method Description protected FilterPipeline
Filter. getPipeline()
Methods in org.jdesktop.swingx.decorator with parameters of type FilterPipeline Modifier and Type Method Description void
DefaultSelectionMapper. setFilters(FilterPipeline pipeline)
void
SelectionMapper. setFilters(FilterPipeline pipeline)
Install the new filter pipeline and map the newly filtered data towards the view.void
SizeSequenceMapper. setFilters(FilterPipeline pipeline)
Constructors in org.jdesktop.swingx.decorator with parameters of type FilterPipeline Constructor Description DefaultSelectionMapper(FilterPipeline pipeline, javax.swing.ListSelectionModel selection)
PRE: selection != null;SizeSequenceMapper(FilterPipeline pipeline)
SizeSequenceMapper(FilterPipeline pipeline, javax.swing.SizeSequence selection, int defaultHeight)
-