Package com.macrofocus.molap.dataframe
Interface DataFrameListener<R,C>
-
- Type Parameters:
R
- the type of row keysC
- the type of column keys
public interface DataFrameListener<R,C>
The listener interface for receiving "interesting" events about a selection.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
dataFrameChanged(DataFrameEvent<R,C> event)
Called whenever the structure or the values of the data frame changes.
-
-
-
Method Detail
-
dataFrameChanged
void dataFrameChanged(DataFrameEvent<R,C> event)
Called whenever the structure or the values of the data frame changes.- Parameters:
event
- the event that characterizes the change.
-
-