Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d8cf5ecce56cab6fcb2d9f70808505ee2aaab7dc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*******************************************************************************
 * 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);

}

Back to the top