Package com.google.gwt.user.client.ui
Interface SourcesClickEvents
-
- All Known Implementing Classes:
Anchor
,Audio
,Button
,ButtonBase
,Canvas
,CheckBox
,CustomButton
,DialogBox.CaptionImpl
,DoubleBox
,FileUpload
,FocusPanel
,FocusWidget
,HTML
,Hyperlink
,Image
,InlineHTML
,InlineHyperlink
,InlineLabel
,IntegerBox
,Label
,ListBox
,LongBox
,MediaBase
,PasswordTextBox
,PushButton
,RadioButton
,ResetButton
,RichTextArea
,SimpleCheckBox
,SimpleRadioButton
,SubmitButton
,SuggestBox
,TextArea
,TextBox
,TextBoxBase
,ToggleButton
,ValueBox
,ValueBoxBase
,Video
@Deprecated public interface SourcesClickEvents
Deprecated.useHasClickHandlers
insteadA widget that implements this interface sources the events defined by theClickListener
interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
addClickListener(ClickListener listener)
Deprecated.useaddClickHandler
insteadvoid
removeClickListener(ClickListener listener)
Deprecated.Use theHandlerRegistration.removeHandler()
method on the object returned byHasClickHandlers.addClickHandler(com.google.gwt.event.dom.client.ClickHandler)
instead
-
-
-
Method Detail
-
addClickListener
@Deprecated void addClickListener(ClickListener listener)
Deprecated.useaddClickHandler
insteadAdds a listener interface to receive click events.- Parameters:
listener
- the listener interface to add
-
removeClickListener
@Deprecated void removeClickListener(ClickListener listener)
Deprecated.Use theHandlerRegistration.removeHandler()
method on the object returned byHasClickHandlers.addClickHandler(com.google.gwt.event.dom.client.ClickHandler)
insteadRemoves a previously added listener interface.- Parameters:
listener
- the listener interface to remove
-
-