Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2015-08-25 09:20:55 +0000
committerLars Vogel2015-08-25 09:20:55 +0000
commit62688fb3e9eb46c03da36c56a52e7c514827bacb (patch)
tree84ed38b44c4df7b0443a4abe3fe5a1a9ed3e37c4 /bundles/org.eclipse.equinox.common/src
parent9ff1e68ea7e6cf89acd760b0377e4e837f57c0c4 (diff)
downloadrt.equinox.bundles-62688fb3e9eb46c03da36c56a52e7c514827bacb.tar.gz
rt.equinox.bundles-62688fb3e9eb46c03da36c56a52e7c514827bacb.tar.xz
rt.equinox.bundles-62688fb3e9eb46c03da36c56a52e7c514827bacb.zip
Bug 475770 - Remove (Intentionally not javadoc'd) statements from
org.eclipse.equinox.common Change-Id: I69817749075b9e37aefcbacf7f1d43e3a2de3610 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
Diffstat (limited to 'bundles/org.eclipse.equinox.common/src')
-rw-r--r--bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/MultiStatus.java6
-rw-r--r--bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/Status.java27
-rw-r--r--bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/SubProgressMonitor.java15
3 files changed, 1 insertions, 47 deletions
diff --git a/bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/MultiStatus.java b/bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/MultiStatus.java
index 7211fd495..d4a92615a 100644
--- a/bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/MultiStatus.java
+++ b/bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/MultiStatus.java
@@ -96,17 +96,11 @@ public class MultiStatus extends Status {
}
}
- /* (Intentionally not javadoc'd)
- * Implements the corresponding method on <code>IStatus</code>.
- */
@Override
public IStatus[] getChildren() {
return children;
}
- /* (Intentionally not javadoc'd)
- * Implements the corresponding method on <code>IStatus</code>.
- */
@Override
public boolean isMultiStatus() {
return true;
diff --git a/bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/Status.java b/bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/Status.java
index e23b08e1c..53adf781c 100644
--- a/bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/Status.java
+++ b/bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/Status.java
@@ -132,73 +132,46 @@ public class Status implements IStatus {
setException(null);
}
- /* (Intentionally not javadoc'd)
- * Implements the corresponding method on <code>IStatus</code>.
- */
@Override
public IStatus[] getChildren() {
return theEmptyStatusArray;
}
- /* (Intentionally not javadoc'd)
- * Implements the corresponding method on <code>IStatus</code>.
- */
@Override
public int getCode() {
return code;
}
- /* (Intentionally not javadoc'd)
- * Implements the corresponding method on <code>IStatus</code>.
- */
@Override
public Throwable getException() {
return exception;
}
- /* (Intentionally not javadoc'd)
- * Implements the corresponding method on <code>IStatus</code>.
- */
@Override
public String getMessage() {
return message;
}
- /* (Intentionally not javadoc'd)
- * Implements the corresponding method on <code>IStatus</code>.
- */
@Override
public String getPlugin() {
return pluginId;
}
- /* (Intentionally not javadoc'd)
- * Implements the corresponding method on <code>IStatus</code>.
- */
@Override
public int getSeverity() {
return severity;
}
- /* (Intentionally not javadoc'd)
- * Implements the corresponding method on <code>IStatus</code>.
- */
@Override
public boolean isMultiStatus() {
return false;
}
- /* (Intentionally not javadoc'd)
- * Implements the corresponding method on <code>IStatus</code>.
- */
@Override
public boolean isOK() {
return severity == OK;
}
- /* (Intentionally not javadoc'd)
- * Implements the corresponding method on <code>IStatus</code>.
- */
@Override
public boolean matches(int severityMask) {
return (severity & severityMask) != 0;
diff --git a/bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/SubProgressMonitor.java b/bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/SubProgressMonitor.java
index 675a1d2e8..98fc82750 100644
--- a/bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/SubProgressMonitor.java
+++ b/bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/SubProgressMonitor.java
@@ -100,8 +100,7 @@ public class SubProgressMonitor extends ProgressMonitorWrapper {
this.style = style;
}
- /* (Intentionally not javadoc'd)
- * Implements the method <code>IProgressMonitor.beginTask</code>.
+ /**
*
* Starts a new main task. Since this progress monitor is a sub
* progress monitor, the given name will NOT be used to update
@@ -126,9 +125,6 @@ public class SubProgressMonitor extends ProgressMonitorWrapper {
}
}
- /* (Intentionally not javadoc'd)
- * Implements the method <code>IProgressMonitor.done</code>.
- */
@Override
public void done() {
// Ignore if more done calls than beginTask calls or if we are still
@@ -145,9 +141,6 @@ public class SubProgressMonitor extends ProgressMonitorWrapper {
sentToParent = 0;
}
- /* (Intentionally not javadoc'd)
- * Implements the internal method <code>IProgressMonitor.internalWorked</code>.
- */
@Override
public void internalWorked(double work) {
if (usedUp || nestedBeginTasks != 1) {
@@ -162,9 +155,6 @@ public class SubProgressMonitor extends ProgressMonitorWrapper {
}
}
- /* (Intentionally not javadoc'd)
- * Implements the method <code>IProgressMonitor.subTask</code>.
- */
@Override
public void subTask(String name) {
if ((style & SUPPRESS_SUBTASK_LABEL) != 0) {
@@ -178,9 +168,6 @@ public class SubProgressMonitor extends ProgressMonitorWrapper {
super.subTask(label);
}
- /* (Intentionally not javadoc'd)
- * Implements the method <code>IProgressMonitor.worked</code>.
- */
@Override
public void worked(int work) {
internalWorked(work);

Back to the top