Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/IContributor.java')
-rw-r--r--bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/IContributor.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/IContributor.java b/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/IContributor.java
index 20399eb3a..bc568afb4 100644
--- a/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/IContributor.java
+++ b/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/IContributor.java
@@ -4,7 +4,7 @@
* 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
*******************************************************************************/
@@ -12,9 +12,9 @@ package org.eclipse.core.runtime;
/**
* This interface describes a registry contributor - an entity that supplies information
- * to the extension registry.
+ * to the extension registry.
* <p>
- * Registry contributor objects can be obtained by calling {@link IExtensionPoint#getContributor()},
+ * Registry contributor objects can be obtained by calling {@link IExtensionPoint#getContributor()},
* {@link IExtension#getContributor()}, and {@link IConfigurationElement#getContributor()}.
* Alternatively, a contributor factory appropriate for the registry in use can be called to directly
* obtain an IContributor object.
@@ -25,7 +25,7 @@ package org.eclipse.core.runtime;
* </p>
* @see org.eclipse.core.runtime.ContributorFactoryOSGi
* @see org.eclipse.core.runtime.ContributorFactorySimple
- *
+ *
* @since org.eclipse.equinox.registry 3.2
* @noimplement This interface is not intended to be implemented by clients.
* @noextend This interface is not intended to be extended by clients.
@@ -34,8 +34,8 @@ public interface IContributor {
/**
* Provides name of the contributor (e.g., "org.eclipse.core.runtime").
- *
- * @return name of the registry contributor
+ *
+ * @return name of the registry contributor
*/
public String getName();
}

Back to the top