blob: f9454fbfb24bb58a2391846c154d0fc19306db5e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.activities;
/**
* <p>
* An instance of <code>IActivityServiceListener</code> can be used by clients
* to receive notification of changes to one or more instances of
* <code>IActivityService</code>.
* </p>
* <p>
* This interface may be implemented by clients.
* </p>
* <p>
* <em>EXPERIMENTAL</em>
* </p>
*
* @since 3.0
* @see IActivityService#addRoleManagerListener
* @see IActivityService#removeRoleManagerListener
* @see IActivityServiceEvent
*/
public interface IActivityServiceListener {
/**
* Notifies that one or more attributes of an instance of
* <code>IActivityService</code> have changed. Specific details are
* described in the <code>IActivityServiceEvent</code>.
*
* @param activityServiceEvent the activity service event. Guaranteed not to
* be <code>null</code>.
*/
void activityServiceChanged(IActivityServiceEvent activityServiceEvent);
}