com.smartgwt.client.widgets.tab.events
Interface HasTabTitleChangedHandlers

All Superinterfaces:
com.google.gwt.event.shared.HasHandlers
All Known Implementing Classes:
TabSet

public interface HasTabTitleChangedHandlers
extends com.google.gwt.event.shared.HasHandlers


Method Summary
 com.google.gwt.event.shared.HandlerRegistration addTabTitleChangedHandler(TabTitleChangedHandler handler)
          This notification method fired when the user changes the title of a tab in this TabSet.
 
Methods inherited from interface com.google.gwt.event.shared.HasHandlers
fireEvent
 

Method Detail

addTabTitleChangedHandler

com.google.gwt.event.shared.HandlerRegistration addTabTitleChangedHandler(TabTitleChangedHandler handler)
This notification method fired when the user changes the title of a tab in this TabSet. This can happen either through user interaction with the UI if canEditTabTitles is set, or programmatically if application code calls editTabTitle.

Call TabTitleChangedEvent.cancel() from within TabTitleChangedHandler.onTabTitleChanged(com.smartgwt.client.widgets.tab.events.TabTitleChangedEvent) from this method to cancel the change.

Parameters:
handler - the tabTitleChanged handler
Returns:
HandlerRegistration used to remove this handler