KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > pde > internal > core > ifeature > IFeatureInfo


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
12 package org.eclipse.pde.internal.core.ifeature;
13
14 import org.eclipse.core.runtime.CoreException;
15
16 public interface IFeatureInfo extends IFeatureObject {
17     String JavaDoc P_URL = "p_url"; //$NON-NLS-1$
18

19     String JavaDoc P_DESC = "p_desc"; //$NON-NLS-1$
20

21     public String JavaDoc getURL();
22
23     public String JavaDoc getDescription();
24
25     public void setURL(String JavaDoc url) throws CoreException;
26
27     public void setDescription(String JavaDoc desc) throws CoreException;
28
29     public boolean isEmpty();
30
31     public int getIndex();
32 }
33
Popular Tags