Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IPluginContribution.java')
-rw-r--r--bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IPluginContribution.java22
1 files changed, 11 insertions, 11 deletions
diff --git a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IPluginContribution.java b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IPluginContribution.java
index 42eb3bbd8e5..11626c2773d 100644
--- a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IPluginContribution.java
+++ b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IPluginContribution.java
@@ -23,16 +23,16 @@ package org.eclipse.ui;
*/
public interface IPluginContribution {
- /**
- * @return the local id of the contribution. Must not be <code>null</code>.
- * This should correspond to the extension-specific identifier for
- * a given contribution.
- */
- String getLocalId();
+ /**
+ * @return the local id of the contribution. Must not be <code>null</code>. This
+ * should correspond to the extension-specific identifier for a given
+ * contribution.
+ */
+ String getLocalId();
- /**
- * @return the id of the originating plugin. Can be <code>null</code> if
- * this contribution did not originate from a plugin.
- */
- String getPluginId();
+ /**
+ * @return the id of the originating plugin. Can be <code>null</code> if this
+ * contribution did not originate from a plugin.
+ */
+ String getPluginId();
}

Back to the top