blob: d8cf5ecce56cab6fcb2d9f70808505ee2aaab7dc [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2015 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.internal.commands;
/**
* <p>
* An instance of this interface can be used by clients to receive notification
* of changes to one or more instances of <code>CommandImageManager</code>.
* </p>
* <p>
* Clients may instantiate, but must not extend.
* </p>
* <p>
* <strong>PROVISIONAL</strong>. This class or interface has been added as part
* of a work in progress. There is a guarantee neither that this API will work
* nor that it will remain the same. Please do not use this API without
* consulting with the Platform/UI team.
* </p>
* <p>
* This class is eventually intended to exist in
* <code>org.eclipse.jface.commands</code>.
* </p>
*
* @since 3.2
*/
public interface ICommandImageManagerListener {
/**
* Notifies that one or more properties of an instance of
* <code>CommandImageManager</code> have changed. Specific details are described
* in the <code>CommandImageManagerEvent</code>.
*
* @param event The event; never <code>null</code>.
*/
void commandImageManagerChanged(CommandImageManagerEvent event);
}