org.apache.pivot.wtk
Class TableViewSortListener.Adapter

java.lang.Object
  extended by org.apache.pivot.wtk.TableViewSortListener.Adapter
All Implemented Interfaces:
TableViewSortListener
Enclosing interface:
TableViewSortListener

public static class TableViewSortListener.Adapter
extends Object
implements TableViewSortListener

Table view sort listener adapter.


Nested Class Summary
 
Nested classes/interfaces inherited from interface org.apache.pivot.wtk.TableViewSortListener
TableViewSortListener.Adapter
 
Constructor Summary
TableViewSortListener.Adapter()
           
 
Method Summary
 void sortAdded(TableView tableView, String columnName)
          Called when a sort has been added to a table view.
 void sortChanged(TableView tableView)
          Called when a table view's sort has changed.
 void sortRemoved(TableView tableView, String columnName, SortDirection sortDirection)
          Called when a sort has been removed from a table view.
 void sortUpdated(TableView tableView, String columnName, SortDirection previousSortDirection)
          Called when a sort has been updated in a table view.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

TableViewSortListener.Adapter

public TableViewSortListener.Adapter()
Method Detail

sortAdded

public void sortAdded(TableView tableView,
                      String columnName)
Description copied from interface: TableViewSortListener
Called when a sort has been added to a table view.

Specified by:
sortAdded in interface TableViewSortListener

sortUpdated

public void sortUpdated(TableView tableView,
                        String columnName,
                        SortDirection previousSortDirection)
Description copied from interface: TableViewSortListener
Called when a sort has been updated in a table view.

Specified by:
sortUpdated in interface TableViewSortListener

sortRemoved

public void sortRemoved(TableView tableView,
                        String columnName,
                        SortDirection sortDirection)
Description copied from interface: TableViewSortListener
Called when a sort has been removed from a table view.

Specified by:
sortRemoved in interface TableViewSortListener

sortChanged

public void sortChanged(TableView tableView)
Description copied from interface: TableViewSortListener
Called when a table view's sort has changed.

Specified by:
sortChanged in interface TableViewSortListener