KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > core > runtime > internal > adaptor > IPluginInfo


1 /*******************************************************************************
2  * Copyright (c) 2003, 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.core.runtime.internal.adaptor;
12
13 import java.util.*;
14
15 /**
16  * Interface used as an entry to the IPluginConverter
17  *
18  * <p>Internal class.</p>
19  */

20 public interface IPluginInfo {
21     public Map getLibraries();
22
23     public String JavaDoc[] getLibrariesName();
24
25     public ArrayList getRequires();
26
27     public String JavaDoc getMasterId();
28
29     public String JavaDoc getMasterVersion();
30
31     public String JavaDoc getMasterMatch();
32
33     public String JavaDoc getPluginClass();
34
35     public String JavaDoc getUniqueId();
36
37     public String JavaDoc getVersion();
38
39     public boolean isFragment();
40
41     public Set getPackageFilters();
42
43     public String JavaDoc getPluginName();
44
45     public String JavaDoc getProviderName();
46
47     public boolean isSingleton();
48     
49     public boolean hasExtensionExtensionPoints();
50     
51     String JavaDoc validateForm();
52 }
53
Popular Tags