KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > core > commands > IParameterTypeListener


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.core.commands;
12
13 /**
14  * An instance of this interface can be used by clients to receive notification
15  * of changes to one or more instances of {@link ParameterType}.
16  * <p>
17  * This interface may be implemented by clients.
18  * </p>
19  *
20  * @since 3.2
21  * @see ParameterType#addListener(IParameterTypeListener)
22  * @see ParameterType#removeListener(IParameterTypeListener)
23  */

24 public interface IParameterTypeListener {
25
26     /**
27      * Notifies that one or more properties of an instance of
28      * {@link ParameterType} have changed. Specific details are described in the
29      * {@link ParameterTypeEvent}.
30      *
31      * @param parameterTypeEvent
32      * the event. Guaranteed not to be <code>null</code>.
33      */

34     void parameterTypeChanged(ParameterTypeEvent parameterTypeEvent);
35
36 }
37
Popular Tags