KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > pde > internal > core > isite > ISiteBuildObject


1 /*******************************************************************************
2  * Copyright (c) 2000, 2004 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Common Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/cpl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.pde.internal.core.isite;
12
13 import java.io.*;
14
15 import org.eclipse.core.runtime.*;
16 import org.eclipse.pde.core.*;
17 /**
18  * A base of all site model objects.
19  */

20 public interface ISiteBuildObject extends IWritable, IAdaptable, Serializable {
21 /**
22  * Returns the top-level site model object.
23  * @return root feature object
24  */

25 public ISiteBuild getSiteBuild();
26 /**
27  * Returns the site model that owns this model object.
28  *
29  * @return the site model
30  */

31 ISiteBuildModel getModel();
32
33 boolean isInTheModel();
34 /**
35  * Returns the parent of this model object.
36  *
37  * @return the model object parent
38  */

39 public ISiteBuildObject getParent();
40 }
41
Popular Tags