blob: eef9f748eced1629420b439e30b18a67fa9d6aec [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
******************************************************************************/
package org.eclipse.jface.databinding.observable;
import org.eclipse.jface.databinding.observable.list.IListChangeListener;
import org.eclipse.jface.databinding.observable.set.ISetChangeListener;
import org.eclipse.jface.databinding.observable.value.IValueChangeListener;
import org.eclipse.jface.internal.databinding.provisional.observable.mapping.IMappingChangeListener;
/**
* Listener for generic change events. Note that the change events do not carry information about
* the change, they only specify the affected observable. To listen for specific change events, use
* more specific change listeners.
*
* @see IValueChangeListener
* @see IListChangeListener
* @see ISetChangeListener
* @see IMappingChangeListener
*
* @since 1.0
*/
public interface IChangeListener {
/**
* Handle a generic change to the given observable.
*
* @param source
*/
public void handleChange(IObservable source);
}