Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.equinox.registry/src/org/eclipse')
-rw-r--r--bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/IConfigurationElement.java15
-rw-r--r--bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/IExecutableExtension.java15
-rw-r--r--bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/IExtensionRegistry.java2
-rw-r--r--bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/spi/RegistryStrategy.java4
4 files changed, 20 insertions, 16 deletions
diff --git a/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/IConfigurationElement.java b/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/IConfigurationElement.java
index 31b5c5e95..9114c194c 100644
--- a/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/IConfigurationElement.java
+++ b/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/IConfigurationElement.java
@@ -89,10 +89,11 @@ public interface IConfigurationElement {
* <p>
* The names of configuration element attributes
* are the same as the attribute names of the corresponding XML element.
- * For example, the configuration markup
+ * For example, the configuration markup</p>
* <pre>
* &lt;bg pattern="stripes"/&gt;
* </pre>
+ * <p>
* corresponds to a configuration element named <code>"bg"</code>
* with an attribute named <code>"pattern"</code>
* with attribute value <code>"stripes"</code>.
@@ -134,10 +135,11 @@ public interface IConfigurationElement {
* <p>
* The names of configuration element attributes
* are the same as the attribute names of the corresponding XML element.
- * For example, the configuration markup
+ * For example, the configuration markup</p>
* <pre>
* &lt;bg pattern="stripes"/&gt;
* </pre>
+ * <p>
* corresponds to a configuration element named <code>"bg"</code>
* with an attribute named <code>"pattern"</code>
* with attribute value <code>"stripes"</code>.
@@ -162,10 +164,11 @@ public interface IConfigurationElement {
* <p>
* The names of configuration element attributes
* are the same as the attribute names of the corresponding XML element.
- * For example, the configuration markup
+ * For example, the configuration markup</p>
* <pre>
* &lt;bg color="blue" pattern="stripes"/&gt;
* </pre>
+ * <p>
* corresponds to a configuration element named <code>"bg"</code>
* with attributes named <code>"color"</code>
* and <code>"pattern"</code>.
@@ -183,13 +186,14 @@ public interface IConfigurationElement {
* <p>
* Each child corresponds to a nested
* XML element in the configuration markup.
- * For example, the configuration markup
+ * For example, the configuration markup</p>
* <pre>
* &lt;view&gt;
* &nbsp&nbsp&nbsp&nbsp&lt;verticalHint&gt;top&lt;/verticalHint&gt;
* &nbsp&nbsp&nbsp&nbsp&lt;horizontalHint&gt;left&lt;/horizontalHint&gt;
* &lt;/view&gt;
* </pre>
+ * <p>
* corresponds to a configuration element, named <code>"view"</code>,
* with two children.
* </p>
@@ -302,10 +306,11 @@ public interface IConfigurationElement {
* <p>
* Note that translation specified in the plug-in manifest
* file is <b>not</b> automatically applied.
- * For example, the configuration markup
+ * For example, the configuration markup</p>
* <pre>
* &lt;tooltip&gt;#hattip&lt;/tooltip&gt;
* </pre>
+ * <p>
* corresponds to a configuration element, named <code>"tooltip"</code>,
* with value <code>"#hattip"</code>.
* </p>
diff --git a/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/IExecutableExtension.java b/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/IExecutableExtension.java
index 69d5f2ea3..7595c3eb6 100644
--- a/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/IExecutableExtension.java
+++ b/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/IExecutableExtension.java
@@ -13,8 +13,6 @@
*******************************************************************************/
package org.eclipse.core.runtime;
-import org.eclipse.core.runtime.CoreException;
-
/**
* Interface for executable extension classes that require access to
* their configuration element, or implement an extension adapter.
@@ -44,10 +42,11 @@ public interface IExecutableExtension {
* <p>
* Regular executable extensions specify their Java implementation
* class name as an attribute of the configuration element for the
- * extension. For example
+ * extension. For example</p>
* <pre>
* &lt;action run="com.example.BaseAction"/&gt;
* </pre>
+ * <p>
* In the above example, this method would be called with a reference
* to the <code>&lt;action&gt;</code> element (first argument), and
* <code>"run"</code> as the name of the attribute that defined
@@ -69,24 +68,24 @@ public interface IExecutableExtension {
* form. For example, if the extension point specifies an attribute
* <code>"run"</code> to contain the name of the extension implementation,
* an adapter can be configured as
+ * </p>
* <pre>
* &lt;action run="com.example.ExternalAdapter:./cmds/util.exe -opt 3"/&gt;
* </pre>
- * </p>
* <p>
* (2) by converting the attribute used to specify the executable
* extension to a child element of the original configuration element,
* and specifying the adapter data in the form of xml markup.
* Using this form, the example above would become
+ * </p>
* <pre>
* &lt;action&gt;
- * &lt;<it>run</it> class="com.xyz.ExternalAdapter"&gt;
+ * &lt;run class="com.xyz.ExternalAdapter"&gt;
* &lt;parameter name="exec" value="./cmds/util.exe"/&gt;
* &lt;parameter name="opt" value="3"/&gt;
- * &lt;/<it>run</it>&gt;
+ * &lt;/run&gt;
* &lt;/action&gt;
* </pre>
- * </p>
* <p>
* Form (2) will typically only be
* used for extension points that anticipate the majority of
@@ -98,6 +97,7 @@ public interface IExecutableExtension {
* 0-argument public constructor. The adapter data is passed as the
* last argument of this method. The data argument is defined as Object.
* It can have the following values:
+ * </p>
* <ul>
* <li><code>null</code>, if no adapter data was supplied</li>
* <li>in case (1), the initialization data
@@ -106,7 +106,6 @@ public interface IExecutableExtension {
* as a <code>Hashtable</code> containing the actual
* parameter names and values (both <code>String</code>s)</li>
* </ul>
- * </p>
*
* @param config the configuration element used to trigger this execution.
* It can be queried by the executable extension for specific
diff --git a/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/IExtensionRegistry.java b/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/IExtensionRegistry.java
index 3cfd56dc9..5ec344b13 100644
--- a/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/IExtensionRegistry.java
+++ b/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/IExtensionRegistry.java
@@ -89,10 +89,10 @@ public interface IExtensionRegistry {
*
* </p><p>
* This method is equivalent to:
+ * </p>
* <pre>
* addRegistryChangeListener(listener,null);
* </pre>
- * </p>
*
* @param listener the listener
* @see IRegistryChangeListener
diff --git a/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/spi/RegistryStrategy.java b/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/spi/RegistryStrategy.java
index aa43b3413..0e207487a 100644
--- a/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/spi/RegistryStrategy.java
+++ b/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/spi/RegistryStrategy.java
@@ -117,13 +117,13 @@ public class RegistryStrategy {
* to the registry. The method adds a log entry based on the supplied status.
* <p>
* This method writes a message to <code>System.out</code>
- * in the following format:
+ * in the following format:</p>
* <pre>
* [Error|Warning|Log]: Main error message
* [Error|Warning|Log]: Child error message 1
* ...
* [Error|Warning|Log]: Child error message N
- * </pre></p>
+ * </pre>
*
* @param status the status to log
*/

Back to the top