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