public interface ITableListener
ITable
Modifier and Type | Method and Description |
---|---|
void |
valueChanged(ITable source,
java.lang.String key,
java.lang.Object value,
boolean isNew)
Called when a key-value pair is changed in a
ITable
WARNING: If a new key-value is put in this method value changed will immediatly be called which could lead to recursive code |
void valueChanged(ITable source, java.lang.String key, java.lang.Object value, boolean isNew)
ITable
WARNING: If a new key-value is put in this method value changed will immediatly be called which could lead to recursive codesource
- the table the key-value pair exists inkey
- the key associated with the value that changedvalue
- the new valueisNew
- true if the key did not previously exist in the table, otherwise it is false