Package com.google.gwt.user.client.ui
Interface SourcesTableEvents
-
- All Known Implementing Classes:
CellGridImpl
,DefaultCalendarView.CellGrid
,FlexTable
,Grid
,HTMLTable
@Deprecated public interface SourcesTableEvents
Deprecated.useHasClickHandlers
instead. Event sources should implement methods similar toHTMLTable.getCellForEvent(com.google.gwt.event.dom.client.ClickEvent)
A widget that implements this interface sources the events defined by theTableListener
interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
addTableListener(TableListener listener)
Deprecated.See theinterface doc
insteadvoid
removeTableListener(TableListener listener)
Deprecated.Use theHandlerRegistration.removeHandler()
method on the object returned by an add*Handler method instead
-
-
-
Method Detail
-
addTableListener
@Deprecated void addTableListener(TableListener listener)
Deprecated.See theinterface doc
insteadAdds a listener interface to receive click events.- Parameters:
listener
- the listener interface to add
-
removeTableListener
@Deprecated void removeTableListener(TableListener listener)
Deprecated.Use theHandlerRegistration.removeHandler()
method on the object returned by an add*Handler method insteadRemoves a previously added listener interface.- Parameters:
listener
- the listener interface to remove
-
-