Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2019-02-15 22:16:07 +0000
committerAlexander Kurtakov2019-02-15 22:23:41 +0000
commit94821aeec18c0ff4103819e6f5323838b8670bc9 (patch)
treee5055db8d889bc1adee1ce83c190bff80934f265 /org.eclipse.debug.ui/ui/org/eclipse/debug
parenta674c6df5225f33908b78dd288e8439e37df4aa9 (diff)
downloadeclipse.platform.debug-94821aeec18c0ff4103819e6f5323838b8670bc9.tar.gz
eclipse.platform.debug-94821aeec18c0ff4103819e6f5323838b8670bc9.tar.xz
eclipse.platform.debug-94821aeec18c0ff4103819e6f5323838b8670bc9.zip
Bug 543933 - Build javadocs with Java 11I20190216-0600I20190215-1800
Fix javadoc warnings catched by Java 11 tool with XDoclint:html. Change-Id: I22598ce741b2ced850e6642575460534d7ba6309 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/AbstractDebugView.java5
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/DebugUITools.java59
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/WorkingDirectoryBlock.java20
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/contexts/package.html4
4 files changed, 54 insertions, 34 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/AbstractDebugView.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/AbstractDebugView.java
index 4a0e00f72..53ad6b25d 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/AbstractDebugView.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/AbstractDebugView.java
@@ -733,8 +733,9 @@ public abstract class AbstractDebugView extends PageBookView implements IDebugVi
/**
* Handles key events in viewer. Invokes
* <ol>
- * <li><code>REMOVE_ACTION</code> when the delete
- * key is pressed</li>
+ * <li><code>REMOVE_ACTION</code> when the delete key is pressed</li>
+ * </ol>
+ *
* @param event the {@link KeyEvent}
*/
protected void handleKeyPressed(KeyEvent event) {
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/DebugUITools.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/DebugUITools.java
index 6783d742f..91baf81e1 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/DebugUITools.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/DebugUITools.java
@@ -355,13 +355,14 @@ public class DebugUITools {
}
/**
- * Returns the currently active context for the given workbench part. Returns <code>null</code>
- * if there is no current debug context.</p>
- *
- * @param site the part's site where to look up the active context
- * @return the currently active debug context in the given part, or <code>null</code>
- * @since 3.7
- */
+ * Returns the currently active context for the given workbench part. Returns
+ * <code>null</code> if there is no current debug context.
+ *
+ * @param site the part's site where to look up the active context
+ * @return the currently active debug context in the given part, or
+ * <code>null</code>
+ * @since 3.7
+ */
public static IAdaptable getPartDebugContext(IWorkbenchPartSite site) {
IDebugContextService service = DebugUITools.getDebugContextManager().getContextService(site.getWorkbenchWindow());
String id = null;
@@ -718,22 +719,26 @@ public class DebugUITools {
* Saves all dirty editors and builds the workspace according to current
* preference settings, and returns whether a launch should proceed.
* <p>
- * The following preferences affect whether dirty editors are saved,
- * and/or if the user is prompted to save dirty editors:<ul>
+ * The following preferences affect whether dirty editors are saved, and/or if
+ * the user is prompted to save dirty editors:
+ * </p>
+ * <ul>
* <li>PREF_NEVER_SAVE_DIRTY_EDITORS_BEFORE_LAUNCH</li>
* <li>PREF_PROMPT_SAVE_DIRTY_EDITORS_BEFORE_LAUNCH</li>
* <li>PREF_AUTOSAVE_DIRTY_EDITORS_BEFORE_LAUNCH</li>
* </ul>
* The following preference affects whether a build is performed before
- * launching (if required):<ul>
+ * launching (if required):
+ * <ul>
* <li>PREF_BUILD_BEFORE_LAUNCH</li>
* </ul>
- * </p>
*
* @return whether a launch should proceed
* @since 2.0
- * @deprecated Saving has been moved to the launch delegate <code>LaunchConfigurationDelegate</code> to allow for scoped saving
- * of resources that are only involved in the current launch, no longer the entire workspace
+ * @deprecated Saving has been moved to the launch delegate
+ * <code>LaunchConfigurationDelegate</code> to allow for scoped
+ * saving of resources that are only involved in the current launch,
+ * no longer the entire workspace
*/
@Deprecated
public static boolean saveAndBuildBeforeLaunch() {
@@ -741,21 +746,25 @@ public class DebugUITools {
}
/**
- * Saves all dirty editors according to current
- * preference settings, and returns whether a launch should proceed.
+ * Saves all dirty editors according to current preference settings, and returns
+ * whether a launch should proceed.
* <p>
- * The following preferences affect whether dirty editors are saved,
- * and/or if the user is prompted to save dirty editors:<ul>
+ * The following preferences affect whether dirty editors are saved, and/or if
+ * the user is prompted to save dirty editors:
+ * </p>
+ * <ul>
* <li>PREF_NEVER_SAVE_DIRTY_EDITORS_BEFORE_LAUNCH</li>
* <li>PREF_PROMPT_SAVE_DIRTY_EDITORS_BEFORE_LAUNCH</li>
* <li>PREF_AUTOSAVE_DIRTY_EDITORS_BEFORE_LAUNCH</li>
* </ul>
- * </p>
+ *
*
* @return whether a launch should proceed
* @since 2.1
- * @deprecated Saving has been moved to the launch delegate <code>LaunchConfigurationDelegate</code> to allow for scoped saving
- * of resources that are only involved in the current launch, no longer the entire workspace
+ * @deprecated Saving has been moved to the launch delegate
+ * <code>LaunchConfigurationDelegate</code> to allow for scoped
+ * saving of resources that are only involved in the current launch,
+ * no longer the entire workspace
*/
@Deprecated
public static boolean saveBeforeLaunch() {
@@ -1006,14 +1015,16 @@ public class DebugUITools {
* object.
* <p>
* The following preference affects whether a build is performed before
- * launching (if required):<ul>
+ * launching (if required):
+ * </p>
+ * <ul>
* <li>PREF_BUILD_BEFORE_LAUNCH</li>
* </ul>
- * </p>
+ *
*
* @param configuration the configuration to launch
- * @param mode the mode to launch in
- * @param monitor progress monitor
+ * @param mode the mode to launch in
+ * @param monitor progress monitor
* @return the resulting launch object
* @throws CoreException if building or launching fails
* @since 2.1
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/WorkingDirectoryBlock.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/WorkingDirectoryBlock.java
index 55e651a24..9f300d5a9 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/WorkingDirectoryBlock.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/WorkingDirectoryBlock.java
@@ -126,7 +126,9 @@ public abstract class WorkingDirectoryBlock extends AbstractLaunchConfigurationT
/**
* Creates a new WorkingDirectoryBlock for setting a working directory.
*
- * @param workingDirectoryAttribteName the name of the launch configuration attribute to set the working directory's location, cannot be <tt>null</tt>
+ * @param workingDirectoryAttribteName the name of the launch configuration
+ * attribute to set the working directory's
+ * location, cannot be <code>null</code>
*/
protected WorkingDirectoryBlock(String workingDirectoryAttribteName) {
this(workingDirectoryAttribteName, null);
@@ -135,8 +137,11 @@ public abstract class WorkingDirectoryBlock extends AbstractLaunchConfigurationT
/**
* Creates a new WorkingDirectoryBlock for setting a working directory.
*
- * @param workingDirectoryAttribteName the name of the launch configuration attribute to set the working directory's location, cannot be <tt>null</tt>
- * @param helpContextId the help context id to use to hook onto the help system
+ * @param workingDirectoryAttribteName the name of the launch configuration
+ * attribute to set the working directory's
+ * location, cannot be <code>null</code>
+ * @param helpContextId the help context id to use to hook onto
+ * the help system
*/
protected WorkingDirectoryBlock(String workingDirectoryAttribteName,
String helpContextId) {
@@ -313,9 +318,12 @@ public abstract class WorkingDirectoryBlock extends AbstractLaunchConfigurationT
* Returns the project associated with the specified launch configuration or
* <code>null</code> if none.
*
- * @param configuration the launch configuration that has been set to this working directory block
- * @return the project specified by the launch configuration, or <tt>null</tt> if nothing has been set
- * @throws CoreException if an error occurred while retrieving the project from the launch configuration
+ * @param configuration the launch configuration that has been set to this
+ * working directory block
+ * @return the project specified by the launch configuration, or
+ * <code>null</code> if nothing has been set
+ * @throws CoreException if an error occurred while retrieving the project from
+ * the launch configuration
*/
protected abstract IProject getProject(ILaunchConfiguration configuration) throws CoreException;
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/contexts/package.html b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/contexts/package.html
index a0cececcf..e8f9306db 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/contexts/package.html
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/contexts/package.html
@@ -8,9 +8,9 @@
<body link="#0000FF" vlink="#800080">
-<p align="left">Provides a set of interfaces and classes for debug context management.</p>
+<p style="text-align: left;">Provides a set of interfaces and classes for debug context management.</p>
-<h2 align="left">Package Specification</h2>
+<h2 style="text-align: left;">Package Specification</h2>
<p>This package provides a set interfaces and classes to manage debug contexts.</p>
<p>A debug context represents an active state of a program being debugged. The

Back to the top