com.sciapp.event
Class FilterModelEvent

java.lang.Object
  extended by java.util.EventObject
      extended by com.sciapp.event.FilterModelEvent
All Implemented Interfaces:
Serializable

public class FilterModelEvent
extends EventObject

An event used to filter the rows of a JTable.


Field Summary
protected  TableFilter tableFilter
           
 
Fields inherited from class java.util.EventObject
source
 
Constructor Summary
FilterModelEvent(Object source, TableFilter tableFilter)
          Constructs a FilterModelEvent object.
 
Method Summary
 TableFilter getTableFilter()
          Returns the table filter that will filter the tabular data.
 
Methods inherited from class java.util.EventObject
getSource, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

tableFilter

protected TableFilter tableFilter
Constructor Detail

FilterModelEvent

public FilterModelEvent(Object source,
                        TableFilter tableFilter)
Constructs a FilterModelEvent object.

Parameters:
source - the Object generating the event
tableFilter - the table filter that will filter the tabular data
Method Detail

getTableFilter

public TableFilter getTableFilter()
Returns the table filter that will filter the tabular data. If the value returned is null, the filter should be removed.

Returns:
the table filter set to filter the data of the table.