blob: 2ad6a5c8803728102ba8319ccf47193c874781de [file] [log] [blame]
package org.eclipse.ui;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
/**
* Interface for listening for property changes on an object.
* <p>
* This interface may be implemented by clients.
* </p>
*
* @see IWorkbenchPart#addPropertyListener
*/
public interface IPropertyListener {
/**
* Indicates that a property has changed.
*
* @param source the object whose property has changed
* @param propId the id of the property which has changed; property ids
* are generally defined as constants on the source class
*/
public void propertyChanged(Object source, int propId);
}