jdbreport.model.event
Interface TableRowModelListener

All Superinterfaces:
EventListener
All Known Implementing Classes:
JReportGrid, ReportBook, RowHeader, TemplateBook

public interface TableRowModelListener
extends EventListener

TableRowModelListener defines the interface for an object that listens to changes in a TableRowModel.

Version:
1.1 03/09/08
Author:
Andrey Kholmanskih
See Also:
TableRowModelEvent

Method Summary
 void rowAdded(TableRowModelEvent e)
          Tells listeners that a row was added to the model.
 void rowMarginChanged(ChangeEvent e)
          Tells listeners that a row was moved due to a margin change.
 void rowMoved(TableRowModelEvent e)
          Tells listeners that a row was repositioned.
 void rowRemoved(TableRowModelEvent e)
          Tells listeners that a row was removed from the model.
 void rowResized(TableRowModelEvent e)
          Tells listeners that a row was resized.
 void rowSelectionChanged(ListSelectionEvent e)
          Tells listeners that the selection model of the TableRowModel changed.
 void rowUpdated(TableRowModelEvent e)
          Tells listeners that a rows was change.
 

Method Detail

rowAdded

void rowAdded(TableRowModelEvent e)
Tells listeners that a row was added to the model.


rowRemoved

void rowRemoved(TableRowModelEvent e)
Tells listeners that a row was removed from the model.


rowMoved

void rowMoved(TableRowModelEvent e)
Tells listeners that a row was repositioned.


rowResized

void rowResized(TableRowModelEvent e)
Tells listeners that a row was resized.


rowMarginChanged

void rowMarginChanged(ChangeEvent e)
Tells listeners that a row was moved due to a margin change.


rowSelectionChanged

void rowSelectionChanged(ListSelectionEvent e)
Tells listeners that the selection model of the TableRowModel changed.


rowUpdated

void rowUpdated(TableRowModelEvent e)
Tells listeners that a rows was change.