Bug 545330: Problems in javadoc for platform

Fix platform.debug issues.

Change-Id: I90e3cd73e3d4fa187cd2ba567a76e4749bfad8e1
Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
diff --git a/org.eclipse.debug.ui/META-INF/MANIFEST.MF b/org.eclipse.debug.ui/META-INF/MANIFEST.MF
index aa7c511..69deca5 100644
--- a/org.eclipse.debug.ui/META-INF/MANIFEST.MF
+++ b/org.eclipse.debug.ui/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@
 Bundle-ManifestVersion: 2
 Bundle-Name: %pluginName
 Bundle-SymbolicName: org.eclipse.debug.ui; singleton:=true
-Bundle-Version: 3.14.0.qualifier
+Bundle-Version: 3.14.100.qualifier
 Bundle-Activator: org.eclipse.debug.internal.ui.DebugUIPlugin
 Bundle-Vendor: %providerName
 Bundle-Localization: plugin
diff --git a/org.eclipse.debug.ui/pom.xml b/org.eclipse.debug.ui/pom.xml
index e5ca7d7..8f42b22 100644
--- a/org.eclipse.debug.ui/pom.xml
+++ b/org.eclipse.debug.ui/pom.xml
@@ -19,7 +19,7 @@
   </parent>
   <groupId>org.eclipse.debug</groupId>
   <artifactId>org.eclipse.debug.ui</artifactId>
-  <version>3.14.0-SNAPSHOT</version>
+  <version>3.14.100-SNAPSHOT</version>
   <packaging>eclipse-plugin</packaging>
   <properties>
     <code.ignoredWarnings>-warn:+resource,-deprecation,unavoidableGenericProblems</code.ignoredWarnings>
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 53ad6b2..195d580 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
@@ -571,7 +571,8 @@
 	/**
 	 * @see IDebugView#getContextMenuManager()
 	 *
-	 * @deprecated @see AbstractDebugView.getContextMenuManagers()
+	 * @deprecated
+	 * @see AbstractDebugView.getContextMenuManagers()
 	 */
 	@Deprecated
 	@Override
@@ -735,7 +736,7 @@
 	 * <ol>
 	 * <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.ui.console/src/org/eclipse/ui/console/TextConsoleViewer.java b/org.eclipse.ui.console/src/org/eclipse/ui/console/TextConsoleViewer.java
index 19befa8..5f72cd6 100644
--- a/org.eclipse.ui.console/src/org/eclipse/ui/console/TextConsoleViewer.java
+++ b/org.eclipse.ui.console/src/org/eclipse/ui/console/TextConsoleViewer.java
@@ -602,10 +602,10 @@
 	}
 
 	/**
-	 * The cursor has just be moved to the given offset, the mouse has hovered
-	 * over the given offset. Update link rendering.
+	 * The cursor has just be moved to the given offset, the mouse has hovered over
+	 * the given offset. Update link rendering.
 	 *
-	 * @param offset
+	 * @param offset The offset cursor has been moved to.
 	 */
 	protected void updateLinks(int offset) {
 		if (offset >= 0) {
diff --git a/org.eclipse.ui.console/src/org/eclipse/ui/console/actions/TextViewerAction.java b/org.eclipse.ui.console/src/org/eclipse/ui/console/actions/TextViewerAction.java
index 0d0d972..0658143 100644
--- a/org.eclipse.ui.console/src/org/eclipse/ui/console/actions/TextViewerAction.java
+++ b/org.eclipse.ui.console/src/org/eclipse/ui/console/actions/TextViewerAction.java
@@ -32,11 +32,11 @@
 	private ITextOperationTarget fOperationTarget;
 
 	/**
-	 * Constructs a new action in the given text viewer with
-	 * the specified operation code.
+	 * Constructs a new action in the given text viewer with the specified operation
+	 * code.
 	 *
-	 * @param viewer
-	 * @param operationCode
+	 * @param viewer        The viewer containing the action.
+	 * @param operationCode The operation code of the action.
 	 */
 	public TextViewerAction(ITextViewer viewer, int operationCode) {
 		fOperationCode= operationCode;
@@ -64,9 +64,6 @@
 		}
 	}
 
-	/* (non-Javadoc)
-	 * @see org.eclipse.jface.action.IAction#run()
-	 */
 	@Override
 	public void run() {
 		if (fOperationCode != -1 && fOperationTarget != null) {