Package com.google.gwt.user.client.ui
Interface FiresDisclosureEvents
-
- All Known Implementing Classes:
DisclosurePanel
@Deprecated public interface FiresDisclosureEventsDeprecated.UseHasOpenHandlersandHasCloseHandlersinsteadA widget that implements this interface fires the events defined by theDisclosureHandlerinterface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voidaddEventHandler(DisclosureHandler handler)Deprecated.Add an open or close handler to the event source insteadvoidremoveEventHandler(DisclosureHandler handler)Deprecated.Use theHandlerRegistration.removeHandler()method on the object returned by an add*Handler method instead
-
-
-
Method Detail
-
addEventHandler
@Deprecated void addEventHandler(DisclosureHandler handler)
Deprecated.Add an open or close handler to the event source insteadAdds a handler interface to receive open events.- Parameters:
handler- the handler to add
-
removeEventHandler
@Deprecated void removeEventHandler(DisclosureHandler handler)
Deprecated.Use theHandlerRegistration.removeHandler()method on the object returned by an add*Handler method insteadRemoves a previously added handler interface.- Parameters:
handler- the handler to remove
-
-