Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2019-02-14 15:57:04 +0000
committerAlexander Kurtakov2019-02-14 15:57:04 +0000
commitc025f632076eb09b1dcc7885f58e1b2aa729fdeb (patch)
tree2c89cfbe2d402ea5190dd18dcb48cecc3dcaf17f /org.eclipse.help.ui
parent5897c58502c1e042fcdcf77d3d895a5078ccb9e4 (diff)
downloadeclipse.platform.ua-c025f632076eb09b1dcc7885f58e1b2aa729fdeb.tar.gz
eclipse.platform.ua-c025f632076eb09b1dcc7885f58e1b2aa729fdeb.tar.xz
eclipse.platform.ua-c025f632076eb09b1dcc7885f58e1b2aa729fdeb.zip
Bug 543933 - Build javadocs with Java 11I20190215-0630I20190215-0055I20190214-1800
Fix javadoc warnings catched by Java 11 tool with XDoclint:html. Change-Id: I460614a445b9383929d64b8594c8539fd31d9287 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'org.eclipse.help.ui')
-rw-r--r--org.eclipse.help.ui/src/org/eclipse/help/ui/browser/LaunchURL.java21
1 files changed, 12 insertions, 9 deletions
diff --git a/org.eclipse.help.ui/src/org/eclipse/help/ui/browser/LaunchURL.java b/org.eclipse.help.ui/src/org/eclipse/help/ui/browser/LaunchURL.java
index 34be32b6a..7bc2a5b2a 100644
--- a/org.eclipse.help.ui/src/org/eclipse/help/ui/browser/LaunchURL.java
+++ b/org.eclipse.help.ui/src/org/eclipse/help/ui/browser/LaunchURL.java
@@ -33,22 +33,25 @@ import org.eclipse.ui.IWorkbenchWindowActionDelegate;
* <p>
* This class is intended to be specified as a value of a class attribute of an
* action element in plugin.xml for extensions of org.eclipse.ui.actionSets
- * extension point. The URL to launch must be specified in the markup in one
- * of two ways.
- * </p>
+ * extension point. The URL to launch must be specified in the markup in one of
+ * two ways.
* </p>
+ * <p>
* The action element can have an attribute named url, in addition to markup
* required by org.eclipse.ui.actionSets extension point specification. The
* value of the url attribute should specify a URL to be opened in a browser.
* </p>
- * </p>
+ * <p>
* Alternatively, since 3.1, instead of a class attribute on the action element,
- * the extension can specify a nested class element with a class attribute
- * and URL specified in a parameter sub-element. For example:
- * <pre> &lt;class class="org.eclipse.help.ui.browser.LaunchURL"&gt;
- * &lt;parameter name="url" value="http://eclipse.org/" /&gt;
- * &lt;/class&gt;</pre>
+ * the extension can specify a nested class element with a class attribute and
+ * URL specified in a parameter sub-element. For example:
* </p>
+ *
+ * <pre>
+ * &lt;class class="org.eclipse.help.ui.browser.LaunchURL"&gt;
+ * &lt;parameter name="url" value="http://eclipse.org/" /&gt;
+ * &lt;/class&gt;
+ * </pre>
*/
public class LaunchURL implements IWorkbenchWindowActionDelegate,
IExecutableExtension {

Back to the top