Package com.google.gwt.user.client.ui
Interface FiresDisclosureEvents
-
- All Known Implementing Classes:
DisclosurePanel
@Deprecated public interface FiresDisclosureEvents
Deprecated.UseHasOpenHandlers
andHasCloseHandlers
insteadA widget that implements this interface fires the events defined by theDisclosureHandler
interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
addEventHandler(DisclosureHandler handler)
Deprecated.Add an open or close handler to the event source insteadvoid
removeEventHandler(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
-
-