18 lines
420 B
Java
18 lines
420 B
Java
package flintstones.helper.wtable.interfaces;
|
|
|
|
/**
|
|
* The Interface IWTableCellEventModified allows a cell to execute code when modified.
|
|
*/
|
|
public interface IWTableCellEventModified {
|
|
|
|
/**
|
|
* Cell modified.
|
|
*
|
|
* @param col the col
|
|
* @param row the row
|
|
* @param oldContent the old content
|
|
* @param newContent the new content
|
|
*/
|
|
void cellModified(int col, int row, Object oldContent, Object newContent);
|
|
}
|