Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.osgi.compatibility.plugins/src/org/eclipse/osgi/compatibility/plugins/IPluginInfo.java')
-rw-r--r--bundles/org.eclipse.osgi.compatibility.plugins/src/org/eclipse/osgi/compatibility/plugins/IPluginInfo.java52
1 files changed, 52 insertions, 0 deletions
diff --git a/bundles/org.eclipse.osgi.compatibility.plugins/src/org/eclipse/osgi/compatibility/plugins/IPluginInfo.java b/bundles/org.eclipse.osgi.compatibility.plugins/src/org/eclipse/osgi/compatibility/plugins/IPluginInfo.java
new file mode 100644
index 000000000..214c95d2d
--- /dev/null
+++ b/bundles/org.eclipse.osgi.compatibility.plugins/src/org/eclipse/osgi/compatibility/plugins/IPluginInfo.java
@@ -0,0 +1,52 @@
+/*******************************************************************************
+ * Copyright (c) 2003, 2013 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.osgi.compatibility.plugins;
+
+import java.util.*;
+
+/**
+ * Interface used as an entry to the IPluginConverter
+ *
+ * <p>Internal class.</p>
+ */
+public interface IPluginInfo {
+ public Map<String, List<String>> getLibraries();
+
+ public String[] getLibrariesName();
+
+ public ArrayList<PluginParser.Prerequisite> getRequires();
+
+ public String getMasterId();
+
+ public String getMasterVersion();
+
+ public String getMasterMatch();
+
+ public String getPluginClass();
+
+ public String getUniqueId();
+
+ public String getVersion();
+
+ public boolean isFragment();
+
+ public Set<String> getPackageFilters();
+
+ public String getPluginName();
+
+ public String getProviderName();
+
+ public boolean isSingleton();
+
+ public boolean hasExtensionExtensionPoints();
+
+ String validateForm();
+}

Back to the top