blob: e48b25c071fee16884e1c0d4b1753f330e3db2e9 [file] [log] [blame]
/**
* Copyright (c) 2006 IBM Corporation.
* 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 Implementation
*
*/
package org.eclipse.ptp.remotetools.preferences.events;
import java.util.EventListener;
/**
*
* @author Ricardo M. Matinata
* @since 1.0
*/
public interface IPreferencesChangeListener extends EventListener {
/**
* Notification that a property has changed.
* <p>
* This method gets called when the observed object fires a property
* change event.
* </p>
*
* @param event the property change event object describing which
* property changed and how
*/
public void propertyChange(PreferencesChangeEvent event);
}