Package com.google.gwt.user.client.ui
Interface SourcesPopupEvents
-
- All Known Implementing Classes:
DecoratedPopupPanel
,DialogBox
,LoggingPopup
,PopupPanel
@Deprecated public interface SourcesPopupEvents
Deprecated.useHasCloseHandlers
insteadA widget that implements this interface sources the events defined by thePopupListener
interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
addPopupListener(PopupListener listener)
Deprecated.void
removePopupListener(PopupListener listener)
Deprecated.Use theHandlerRegistration.removeHandler()
method on the object returned byHasCloseHandlers.addCloseHandler(com.google.gwt.event.logical.shared.CloseHandler<T>)
instead
-
-
-
Method Detail
-
addPopupListener
@Deprecated void addPopupListener(PopupListener listener)
Deprecated.Adds a listener interface to receive popup events.- Parameters:
listener
- the listener interface to add.
-
removePopupListener
@Deprecated void removePopupListener(PopupListener listener)
Deprecated.Use theHandlerRegistration.removeHandler()
method on the object returned byHasCloseHandlers.addCloseHandler(com.google.gwt.event.logical.shared.CloseHandler<T>)
insteadRemoves a previously added popup listener.- Parameters:
listener
- the listener interface to remove.
-
-