Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2019-02-18 21:31:20 +0000
committerAlexander Kurtakov2019-02-18 21:31:20 +0000
commit814d1fa9f3376b4e00b6a7772a8d8d37bbf49835 (patch)
treed4600f53edccc46a3a0dc465c2ff12d5994be68f /org.eclipse.debug.ui
parent7ae9987f515d49bf483d3b0a5ddf699626842ad1 (diff)
downloadeclipse.platform.debug-814d1fa9f3376b4e00b6a7772a8d8d37bbf49835.tar.gz
eclipse.platform.debug-814d1fa9f3376b4e00b6a7772a8d8d37bbf49835.tar.xz
eclipse.platform.debug-814d1fa9f3376b4e00b6a7772a8d8d37bbf49835.zip
After fixing majority of Xdoclint:html issues there are warnings even with Xdoclint:none. Change-Id: I8d4ec9e2b5bfa137526e8bee0d00a3c9fef0eddb Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'org.eclipse.debug.ui')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/ExecutionAction.java3
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/IDebugUIConstants.java9
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/ILaunchShortcut.java9
3 files changed, 13 insertions, 8 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/ExecutionAction.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/ExecutionAction.java
index 07d0a51f8..dafdae0a4 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/ExecutionAction.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/ExecutionAction.java
@@ -26,7 +26,8 @@ import org.eclipse.ui.IActionDelegate2;
import org.eclipse.ui.IWorkbenchWindow;
/**
- * This is the super class of the Run & Debug actions which appears in the desktop menu and toolbar.
+ * This is the super class of the Run &amp; Debug actions which appears in the
+ * desktop menu and toolbar.
*/
public abstract class ExecutionAction implements IActionDelegate2 {
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/IDebugUIConstants.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/IDebugUIConstants.java
index 309e490eb..cfb8d5028 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/IDebugUIConstants.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/IDebugUIConstants.java
@@ -184,7 +184,8 @@ public interface IDebugUIConstants {
String PREF_REUSE_EDITOR = PLUGIN_ID + ".reuse_editor"; //$NON-NLS-1$
/**
- * Integer preference that specifies the length of the Run & Debug launch history lists.
+ * Integer preference that specifies the length of the Run &amp; Debug launch
+ * history lists.
*
* @since 2.0
*/
@@ -473,13 +474,15 @@ public interface IDebugUIConstants {
String IMG_OBJS_BREAKPOINT_GROUP_DISABLED = "IMG_OBJS_BREAKPOINT_GROUP_DISABLED"; //$NON-NLS-1$
/**
- * Enabled watchpoint image identifier (access & modification).
+ * Enabled watchpoint image identifier (access &amp; modification).
+ *
* @since 3.0
*/
String IMG_OBJS_WATCHPOINT= "IMG_OBJS_WATCHPOINT"; //$NON-NLS-1$
/**
- * Disabled watchpoint image identifier (access & modification).
+ * Disabled watchpoint image identifier (access &amp; modification).
+ *
* @since 3.0
*/
String IMG_OBJS_WATCHPOINT_DISABLED= "IMG_OBJS_WATCHPOINT_DISABLED"; //$NON-NLS-1$
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/ILaunchShortcut.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/ILaunchShortcut.java
index c3adfdcf9..9c421cbfc 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/ILaunchShortcut.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/ILaunchShortcut.java
@@ -33,6 +33,7 @@ import org.eclipse.ui.IEditorPart;
* A launch shortcut extension is defined in <code>plugin.xml</code>. Following
* is an example definition of a launch shortcut extension.
* </p>
+ *
* <pre>
* &lt;extension point="org.eclipse.debug.ui.launchShortcuts"&gt;
* &lt;shortcut
@@ -116,9 +117,9 @@ import org.eclipse.ui.IEditorPart;
* <code>org.eclipse.debug.ui.actions.ILaunchable</code> interface is simply
* used to tag objects that support contextual launching.</li>
* <li><code>contextLabel</code> zero or more context menu labels. For shortcuts
- * that pass their filter tests, the specified label will appear in the "Run ->"
- * context menu and be bound to a launch action of the specified mode (e.g.
- * run,debug,profile).</li>
+ * that pass their filter tests, the specified label will appear in the "Run
+ * -&gt;" context menu and be bound to a launch action of the specified mode
+ * (e.g. run,debug,profile).</li>
* <li><code>configurationType</code> allows more that one associated launch
* configuration type to be specified for this launch shortcut. That way
* consumers of launch shortcut information can know what kinds of launch
@@ -131,7 +132,7 @@ import org.eclipse.ui.IEditorPart;
* Clients contributing a launch shortcut are intended to implement this
* interface.
* </p>
- *
+ *
* @since 2.0
*/
public interface ILaunchShortcut {

Back to the top