Files
Flintstones/bundles/flintstones.helper.wtable/src/flintstones/helper/wtable/interfaces/IWTableCellEventModified.java
T
Francisco Jesús Martínez Mimbrera 759a8968a2 public code v1
2026-05-23 00:32:57 +02:00

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);
}