gov.nih.nlm.swing
Interface TableSortListener

All Superinterfaces:
EventListener, ListSelectionListener
All Known Implementing Classes:
LanguagesToRemoveFilter, RemoveByTermgroupListSelectionListener, SuppressibleTermgroupsListSelectionListener

public interface TableSortListener
extends ListSelectionListener

Generically represents a listener for responding to SortableJTable TableSortEvents. The interface extends ListSelectionListener because this listener is designed to allow list selection listeners to ignore valueChanged calls during a table sort.

Author:
Brian Carsen

Method Summary
 void tableSortFinished(TableSortEvent e)
          Informs the listener that table sorting has completed.
 void tableSortStarted(TableSortEvent e)
          Informs the listener that table sorting has begun.
 
Methods inherited from interface javax.swing.event.ListSelectionListener
valueChanged
 

Method Detail

tableSortStarted

public void tableSortStarted(TableSortEvent e)
Informs the listener that table sorting has begun.

Parameters:
e - the TableSortEvent

tableSortFinished

public void tableSortFinished(TableSortEvent e)
Informs the listener that table sorting has completed.

Parameters:
e - the TableSortEvent


Copyright ©2005