Package com.google.gwt.user.client.ui
Interface SourcesLoadEvents
-
- All Known Implementing Classes:
Image
@Deprecated public interface SourcesLoadEvents
Deprecated.useHasErrorHandlers
andHasLoadHandlers
insteadA widget that implements this interface sources the events defined by theLoadListener
interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
addLoadListener(LoadListener listener)
Deprecated.void
removeLoadListener(LoadListener listener)
Deprecated.Use theHandlerRegistration.removeHandler()
method on the object returned byHasLoadHandlers.addLoadHandler(com.google.gwt.event.dom.client.LoadHandler)
instead
-
-
-
Method Detail
-
addLoadListener
@Deprecated void addLoadListener(LoadListener listener)
Deprecated.Adds a listener interface to receive load events.- Parameters:
listener
- the listener interface to add
-
removeLoadListener
@Deprecated void removeLoadListener(LoadListener listener)
Deprecated.Use theHandlerRegistration.removeHandler()
method on the object returned byHasLoadHandlers.addLoadHandler(com.google.gwt.event.dom.client.LoadHandler)
insteadRemoves a previously added listener interface.- Parameters:
listener
- the listener interface to remove
-
-