comparison dwtx/core/commands/contexts/IContextManagerListener.d @ 3:6518c18a01f7

eclipse.core package without osgi dependencies
author Frank Benoit <benoit@tionex.de>
date Wed, 26 Mar 2008 00:57:19 +0100
parents
children
comparison
equal deleted inserted replaced
2:a012107a911c 3:6518c18a01f7
1 /*******************************************************************************
2 * Copyright (c) 2000, 2005 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 * Port to the D programming language:
11 * Frank Benoit <benoit@tionex.de>
12 *******************************************************************************/
13
14 module dwtx.core.commands.contexts.IContextManagerListener;
15
16 import dwtx.core.commands.contexts.ContextManagerEvent;
17
18 /**
19 * An instance of this interface can be used by clients to receive notification
20 * of changes to one or more instances of <code>IContextManager</code>.
21 * <p>
22 * This interface may be implemented by clients.
23 * </p>
24 *
25 * @since 3.1
26 * @see ContextManager#addContextManagerListener(IContextManagerListener)
27 * @see ContextManager#removeContextManagerListener(IContextManagerListener)
28 */
29 public interface IContextManagerListener {
30
31 /**
32 * Notifies that one or more properties of an instance of
33 * <code>IContextManager</code> have changed. Specific details are
34 * described in the <code>ContextManagerEvent</code>.
35 *
36 * @param contextManagerEvent
37 * the context manager event. Guaranteed not to be
38 * <code>null</code>.
39 */
40 void contextManagerChanged(ContextManagerEvent contextManagerEvent);
41 }