Package com.google.gwt.cell.client
Interface ValueUpdater<C>
-
- Type Parameters:
C
- the data type of the cell
public interface ValueUpdater<C>
AValueUpdater
may be added to aCell
to provide updated data.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
update(C value)
Announces a new value.
-
-
-
Method Detail
-
update
void update(C value)
Announces a new value.- Parameters:
value
- the updated value
-
-