KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > update > configuration > IConfiguredSiteChangedListener


1 /*******************************************************************************
2  * Copyright (c) 2000, 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.update.configuration;
12
13 import org.eclipse.update.core.IFeature;
14
15 /**
16  * Configuration change listener. *
17  * <p>
18  * <b>Note:</b> This class/interface is part of an interim API that is still under development and expected to
19  * change significantly before reaching stability. It is being made available at this early stage to solicit feedback
20  * from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
21  * (repeatedly) as the API evolves.
22  * </p>
23  * @since 2.0
24  */

25 public interface IConfiguredSiteChangedListener {
26     
27     /**
28      * Indicates the specified feature was installed.
29      *
30      * @param feature the feature
31      * @since 2.0
32      * <p>
33      * <b>Note:</b> This method is part of an interim API that is still under development and expected to
34      * change significantly before reaching stability. It is being made available at this early stage to solicit feedback
35      * from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
36      * (repeatedly) as the API evolves.
37      * </p>
38      */

39     public void featureInstalled(IFeature feature);
40     
41     /**
42      * Indicates the specified feature was removed (uninstalled)
43      *
44      * @param feature the feature
45      * @since 2.0
46      * <p>
47      * <b>Note:</b> This method is part of an interim API that is still under development and expected to
48      * change significantly before reaching stability. It is being made available at this early stage to solicit feedback
49      * from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
50      * (repeatedly) as the API evolves.
51      * </p>
52      */

53     public void featureRemoved(IFeature feature);
54     
55     /**
56      * Indicates the specified feature was configured.
57      *
58      * @param feature the feature
59      * @since 2.0
60      * <p>
61      * <b>Note:</b> This method is part of an interim API that is still under development and expected to
62      * change significantly before reaching stability. It is being made available at this early stage to solicit feedback
63      * from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
64      * (repeatedly) as the API evolves.
65      * </p>
66      */

67     public void featureConfigured(IFeature feature);
68     
69     /**
70      * Indicates the specified feature was unconfigured.
71      *
72      * @param feature the feature
73      * @since 2.0
74      * <p>
75      * <b>Note:</b> This method is part of an interim API that is still under development and expected to
76      * change significantly before reaching stability. It is being made available at this early stage to solicit feedback
77      * from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
78      * (repeatedly) as the API evolves.
79      * </p>
80      */

81     public void featureUnconfigured(IFeature feature);
82 }
83
84
Popular Tags