KickJava   Java API By Example, From Geeks To Geeks.

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


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  *******************************************************************************/

11 package org.eclipse.update.configuration;
12
13 /**
14  * Install Delta Handler.
15  * Presents the changes the reconciler found to the user
16  * <p>
17  * <b>Note:</b> This class/interface is part of an interim API that is still under development and expected to
18  * change significantly before reaching stability. It is being made available at this early stage to solicit feedback
19  * from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
20  * (repeatedly) as the API evolves.
21  * </p>
22  * @since 2.0
23  * @deprecated Do not use this interface. The extension point deltaHandler has been deprecated.
24  */

25 public interface IInstallDeltaHandler{
26
27     /**
28      * Sets the list of session delta to present to the user
29      *
30      * @param deltas an Array of <code>ISessionDelta</code>
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 init(ISessionDelta[] deltas);
40
41     /**
42      * Prompt the user to configure or unconfigure
43      * new features found during reconciliation
44      *
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 open();
54
55 }
56
Popular Tags