com.eliad.model
Interface GridModelListener

All Known Subinterfaces:
RulerModel
All Known Implementing Classes:
GenericCollectionSpanModel, JSmartGrid, AccessibleGrid

public interface GridModelListener
extends java.util.EventListener

The interface of listeners to GridModel changes

Version:
1.0 04/08/00
Author:
Patrick Mérissert-Coffinières

Method Summary
 void gridDataChanged(GridModelEvent event)
          The general shape of the model did not change, but some data was updated
 void gridModelChanged(GridModelEvent event)
          The entire model has changed.
 void gridStructureChanged(GridModelEvent event)
          The structure of the model changed, but the information is incremental (insertion or removal of a continuous set or row or columns).
 

Method Detail

gridModelChanged

public void gridModelChanged(GridModelEvent event)
The entire model has changed. This is a direct synchronization. All events are sent to require an immediate synchronization.

gridStructureChanged

public void gridStructureChanged(GridModelEvent event)
The structure of the model changed, but the information is incremental (insertion or removal of a continuous set or row or columns).

gridDataChanged

public void gridDataChanged(GridModelEvent event)
The general shape of the model did not change, but some data was updated