Package | Description |
---|---|
com.google.gwt.user.client.ui |
Widgets, Panels, and other user-interface classes.
|
Modifier and Type | Method and Description |
---|---|
static void |
ListenerWrapper.WrappedTableListener.add(HasClickHandlers source,
TableListener listener)
Deprecated.
will be removed in GWT 2.0 along with the listener classes
|
void |
SourcesTableEvents.addTableListener(TableListener listener)
Deprecated.
See the
interface doc instead |
void |
HTMLTable.addTableListener(TableListener listener)
Deprecated.
add a click handler instead and use
HTMLTable.getCellForEvent(ClickEvent) to get the cell
information (remember to check for a null return value) |
static void |
ListenerWrapper.WrappedTableListener.remove(Widget eventSource,
TableListener listener) |
void |
SourcesTableEvents.removeTableListener(TableListener listener)
Deprecated.
Use the
HandlerRegistration.removeHandler()
method on the object returned by an add*Handler method instead |
void |
HTMLTable.removeTableListener(TableListener listener)
Deprecated.
Use the
HandlerRegistration.removeHandler()
method on the object returned by an add*Handler method instead |