Uses of Class
net.coderazzi.filters.artifacts.RowFilter

Packages that use RowFilter
net.coderazzi.filters   
net.coderazzi.filters.artifacts   
net.coderazzi.filters.gui   
net.coderazzi.filters.parser   
 

Uses of RowFilter in net.coderazzi.filters
 

Subclasses of RowFilter in net.coderazzi.filters
 class AndFilter
          Composed set of filters, added via logical AND.
 class ComposedFilter
          Abstract parent class to support the composition of multiple filters.
 class Filter
          Commodity class implementing the interface IFilter on a RowFilter.
 class NotFilter
          Composed set of filters, added via logical AND, and then NOT-ed the result.
 class OrFilter
          Composed set of filters, added via logical OR.
 

Fields in net.coderazzi.filters declared as RowFilter
 RowFilter IParser.InstantFilter.filter
           
 

Methods in net.coderazzi.filters that return RowFilter
 RowFilter IParser.parseText(String expression)
          Parses the text, returning a filter that can be applied to the table.
 RowFilter IFilterTextParser.parseText(String expression, int modelPosition)
          Parses the text, corresponding to a column in the table model
It returns a filter that can be applied to the table sorter.
 

Uses of RowFilter in net.coderazzi.filters.artifacts
 

Methods in net.coderazzi.filters.artifacts with parameters of type RowFilter
 void ITableModelFilter.setRowFilter(RowFilter filter)
          Sets the filter that determines which rows, if any, should be hidden from the view.
 void TableModelFilter.setRowFilter(RowFilter newValue)
           
 

Uses of RowFilter in net.coderazzi.filters.gui
 

Subclasses of RowFilter in net.coderazzi.filters.gui
 class FiltersHandler
          FiltersHandler represents a RowFilter instance that can be attached to a JTable to compose dynamically the outcome of one or more filter editors.
 

Methods in net.coderazzi.filters.gui that return RowFilter
abstract  RowFilter CustomChoice.getFilter(IFilterEditor editor)
          Returns the associated filter.
 

Uses of RowFilter in net.coderazzi.filters.parser
 

Methods in net.coderazzi.filters.parser that return RowFilter
 RowFilter Parser.parseText(String expression)
          IParser interface.