Package com.google.gwt.user.client.ui
Interface ChangeListener
-
- All Superinterfaces:
java.util.EventListener
- All Known Implementing Classes:
DelegatingChangeListenerCollection
@Deprecated public interface ChangeListener extends java.util.EventListener
Deprecated.As of GWT 1.6, DOM and logical change events are separate. UseChangeHandler
for changes triggered by a DOM-based change event andValueChangeHandler
for changes resulting from a logical event such as a method call that changes stateEvent listener interface for 'change' events.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
onChange(Widget sender)
Deprecated.See the deprecation message on this interface for details
-
-
-
Method Detail
-
onChange
@Deprecated void onChange(Widget sender)
Deprecated.See the deprecation message on this interface for detailsFired when a widget changes, where 'change' is defined by the widget sending the event.- Parameters:
sender
- the widget that has changed
-
-