KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > pde > core > plugin > IExtensionsModel


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.pde.core.plugin;
12
13 /**
14  * This type of model is created by parsing the manifest file.
15  * It serves as a base interface for both plug-in and
16  * fragment models by holding data common to both.
17  * If the file is a workspace resource, it will be
18  * available as the underlying resource of the model.
19  * The model may be read-only or editable.
20  * It will also make a reference to the build.properties
21  * model when created. The reference will be of the
22  * same type as the model itself: if the model is
23  * editable, it will attempt to obtain an exclusive
24  * editable copy of build.properties model.
25  * <p>
26  * The plug-in model can be disabled. Disabling the
27  * model will not change its data. Users of the
28  * model will have to decide if the disabled state
29  * if of any importance to them or not.
30  * <p>
31  * The model is capable of notifying listeners
32  * about changes. An attempt to change a read-only
33  * model will result in a CoreException.
34  */

35 public interface IExtensionsModel extends ISharedExtensionsModel {
36 }
37
Popular Tags