blob: 4b50253fa9aebbb48d6b22ac3caff4c79b7454b4 [file] [log] [blame]
/*
* Copyright 2006 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.google.gwt.user.client.ui;
import java.util.EventListener;
/**
* Event listener interface for 'change' events.
*
* @deprecated As of GWT 1.6, DOM and logical change events are separate. Use
* {@link com.google.gwt.event.dom.client.ChangeHandler} for changes
* triggered by a DOM-based change event and
* {@link com.google.gwt.event.logical.shared.ValueChangeHandler}
* for changes resulting from a logical event such as a method call
* that changes state
*/
@Deprecated
public interface ChangeListener extends EventListener {
/**
* Fired when a widget changes, where 'change' is defined by the widget
* sending the event.
*
* @param sender the widget that has changed
*
* @deprecated See the deprecation message on this interface for details
*/
@Deprecated
void onChange(Widget sender);
}