Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.help/Eclipse Help/org/eclipse/help/internal/contributors/ContributionManager.java')
-rw-r--r--org.eclipse.help/Eclipse Help/org/eclipse/help/internal/contributors/ContributionManager.java29
1 files changed, 29 insertions, 0 deletions
diff --git a/org.eclipse.help/Eclipse Help/org/eclipse/help/internal/contributors/ContributionManager.java b/org.eclipse.help/Eclipse Help/org/eclipse/help/internal/contributors/ContributionManager.java
new file mode 100644
index 000000000..e210ea65d
--- /dev/null
+++ b/org.eclipse.help/Eclipse Help/org/eclipse/help/internal/contributors/ContributionManager.java
@@ -0,0 +1,29 @@
+package org.eclipse.help.internal.contributors;
+
+/*
+ * Licensed Materials - Property of IBM,
+ * WebSphere Studio Workbench
+ * (c) Copyright IBM Corp 2000
+ */
+
+import java.util.Iterator;
+
+/**
+ * Contributions manager.
+ */
+public interface ContributionManager {
+ public static final String CONTRIBUTION_EXTENSION =
+ "org.eclipse.help.contributions";
+
+ /**
+ */
+ Iterator getContributingPlugins();
+ /**
+ */
+ Iterator getContributionsOfType(String typeName);
+ /**
+ */
+ boolean hasNewContributions();
+ /** Saves the contribution info */
+ public void versionContributions();
+}

Back to the top