Uses of Class
org.jdesktop.swingx.decorator.FilterPipeline

Packages that use FilterPipeline
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
protected  FilterPipeline JXList.filters
          The pipeline holding the filters.
protected  FilterPipeline JXTable.filters
          The FilterPipeline for the table.
 

Methods in org.jdesktop.swingx that return FilterPipeline
 FilterPipeline JXList.getFilters()
          Returns the FilterPipeline assigned to this list, or null if filtering not enabled.
 FilterPipeline JXTable.getFilters()
          Returns the FilterPipeline for the table.
 

Methods in org.jdesktop.swingx with parameters of type FilterPipeline
 void JXTreeTable.setFilters(FilterPipeline pipeline)
          overridden to do nothing.
 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.
 

Uses of FilterPipeline in org.jdesktop.swingx.decorator
 

Fields in org.jdesktop.swingx.decorator declared as FilterPipeline
protected  FilterPipeline Filter.pipeline
           
 

Methods in org.jdesktop.swingx.decorator that return FilterPipeline
protected  FilterPipeline Filter.getPipeline()
           
 

Methods in org.jdesktop.swingx.decorator with parameters of type FilterPipeline
 void DefaultSelectionMapper.setFilters(FilterPipeline pipeline)
           
 void SizeSequenceMapper.setFilters(FilterPipeline pipeline)
           
 void SelectionMapper.setFilters(FilterPipeline pipeline)
          Install the new filter pipeline and map the newly filtered data towards the view.
 

Constructors in org.jdesktop.swingx.decorator with parameters of type FilterPipeline
DefaultSelectionMapper(FilterPipeline pipeline, ListSelectionModel selection)
          PRE: selection != null;
SizeSequenceMapper(FilterPipeline pipeline)
           
SizeSequenceMapper(FilterPipeline pipeline, SizeSequence selection, int defaultHeight)