Package com.google.gwt.user.client.ui
Interface SourcesTabEvents
-
- All Known Implementing Classes:
DecoratedTabBar
,DecoratedTabPanel
,TabBar
,TabPanel
@Deprecated public interface SourcesTabEvents
Deprecated.useHasSelectionHandlers
andHasBeforeSelectionHandlers
insteadA widget that implements this interface sources the events defined by theTabListener
interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
addTabListener(TabListener listener)
void
removeTabListener(TabListener listener)
Deprecated.Use theHandlerRegistration.removeHandler()
method on the object returned by and add*Handler method instead
-
-
-
Method Detail
-
addTabListener
@Deprecated void addTabListener(TabListener listener)
Deprecated.Adds a listener interface to receive click events.- Parameters:
listener
- the listener interface to add
-
removeTabListener
@Deprecated void removeTabListener(TabListener listener)
Deprecated.Use theHandlerRegistration.removeHandler()
method on the object returned by and add*Handler method insteadRemoves a previously added listener interface.- Parameters:
listener
- the listener interface to remove
-
-