comparison dwtx/core/commands/IParameterTypeListener.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) 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 * Port to the D programming language:
11 * Frank Benoit <benoit@tionex.de>
12 *******************************************************************************/
13 module dwtx.core.commands.IParameterTypeListener;
14
15 import dwtx.core.commands.ParameterTypeEvent;
16
17 import dwt.dwthelper.utils;
18
19 /**
20 * An instance of this interface can be used by clients to receive notification
21 * of changes to one or more instances of {@link ParameterType}.
22 * <p>
23 * This interface may be implemented by clients.
24 * </p>
25 *
26 * @since 3.2
27 * @see ParameterType#addListener(IParameterTypeListener)
28 * @see ParameterType#removeListener(IParameterTypeListener)
29 */
30 public interface IParameterTypeListener {
31
32 /**
33 * Notifies that one or more properties of an instance of
34 * {@link ParameterType} have changed. Specific details are described in the
35 * {@link ParameterTypeEvent}.
36 *
37 * @param parameterTypeEvent
38 * the event. Guaranteed not to be <code>null</code>.
39 */
40 void parameterTypeChanged(ParameterTypeEvent parameterTypeEvent);
41
42 }