1 /******************************************************************************* 2 * Copyright (c) 2005, 2006 IBM Corporation and others. 3 * All rights reserved. This program and the accompanying materials 4 * are made available under the terms of the Eclipse Public License v1.0 5 * which accompanies this distribution, and is available at 6 * http://www.eclipse.org/legal/epl-v10.html 7 * 8 * Contributors: 9 * IBM Corporation - initial API and implementation 10 *******************************************************************************/ 11 package org.eclipse.ui.internal.commands; 12 13 /** 14 * <p> 15 * An instance of this interface can be used by clients to receive notification 16 * of changes to one or more instances of <code>CommandImageManager</code>. 17 * </p> 18 * <p> 19 * Clients may instantiate, but must not extend. 20 * </p> 21 * <p> 22 * <strong>PROVISIONAL</strong>. This class or interface has been added as 23 * part of a work in progress. There is a guarantee neither that this API will 24 * work nor that it will remain the same. Please do not use this API without 25 * consulting with the Platform/UI team. 26 * </p> 27 * <p> 28 * This class is eventually intended to exist in 29 * <code>org.eclipse.jface.commands</code>. 30 * </p> 31 * 32 * @since 3.2 33 */ 34 public interface ICommandImageManagerListener { 35 36 /** 37 * Notifies that one or more properties of an instance of 38 * <code>CommandImageManager</code> have changed. Specific details are 39 * described in the <code>CommandImageManagerEvent</code>. 40 * 41 * @param event 42 * The event; never <code>null</code>. 43 */ 44 void commandImageManagerChanged(CommandImageManagerEvent event); 45 46 } 47