Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Stieber2012-02-01 12:41:09 +0000
committerUwe Stieber2012-02-02 06:19:59 +0000
commit89e9991b3bd5db53ae39175960426cc362860e53 (patch)
tree76c87f74575a7939d663226124319fce762725d6 /target_explorer/plugins/org.eclipse.tcf.te.runtime.stepper
parenta23e1e19ea1bf0f6efd05b9fcfea10b9628dfaf1 (diff)
downloadorg.eclipse.tcf-89e9991b3bd5db53ae39175960426cc362860e53.tar.gz
org.eclipse.tcf-89e9991b3bd5db53ae39175960426cc362860e53.tar.xz
org.eclipse.tcf-89e9991b3bd5db53ae39175960426cc362860e53.zip
Target Explorer: Fix typo's in javadoc
Diffstat (limited to 'target_explorer/plugins/org.eclipse.tcf.te.runtime.stepper')
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.runtime.stepper/src/org/eclipse/tcf/te/runtime/stepper/extensions/AbstractContextStep.java2
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.runtime.stepper/src/org/eclipse/tcf/te/runtime/stepper/extensions/AbstractContextStepper.java26
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.runtime.stepper/src/org/eclipse/tcf/te/runtime/stepper/extensions/ContextStepGroup.java2
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.runtime.stepper/src/org/eclipse/tcf/te/runtime/stepper/interfaces/IContextStepGroup.java2
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.runtime.stepper/src/org/eclipse/tcf/te/runtime/stepper/interfaces/IContextStepGroupIterator.java24
5 files changed, 28 insertions, 28 deletions
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.runtime.stepper/src/org/eclipse/tcf/te/runtime/stepper/extensions/AbstractContextStep.java b/target_explorer/plugins/org.eclipse.tcf.te.runtime.stepper/src/org/eclipse/tcf/te/runtime/stepper/extensions/AbstractContextStep.java
index bee21a04e..495e80548 100644
--- a/target_explorer/plugins/org.eclipse.tcf.te.runtime.stepper/src/org/eclipse/tcf/te/runtime/stepper/extensions/AbstractContextStep.java
+++ b/target_explorer/plugins/org.eclipse.tcf.te.runtime.stepper/src/org/eclipse/tcf/te/runtime/stepper/extensions/AbstractContextStep.java
@@ -187,7 +187,7 @@ public abstract class AbstractContextStep extends ExecutableExtension implements
* delayed states are available and the callback is invoked not with an error status, the
* delayed states will be reported instead.
*
- * @param status The status to delay. Must be not <code>null</code> and either a warning or info status.
+ * @param status The status to delay. Must not be <code>null</code> and either a warning or info status.
*/
protected void delayStatus(IPropertiesContainer data, IFullQualifiedId fullQualifiedId, IStatus status) {
Assert.isNotNull(status);
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.runtime.stepper/src/org/eclipse/tcf/te/runtime/stepper/extensions/AbstractContextStepper.java b/target_explorer/plugins/org.eclipse.tcf.te.runtime.stepper/src/org/eclipse/tcf/te/runtime/stepper/extensions/AbstractContextStepper.java
index d219b2b30..bfcd48dc6 100644
--- a/target_explorer/plugins/org.eclipse.tcf.te.runtime.stepper/src/org/eclipse/tcf/te/runtime/stepper/extensions/AbstractContextStepper.java
+++ b/target_explorer/plugins/org.eclipse.tcf.te.runtime.stepper/src/org/eclipse/tcf/te/runtime/stepper/extensions/AbstractContextStepper.java
@@ -458,10 +458,10 @@ public abstract class AbstractContextStepper extends ExecutableExtension impleme
/**
* Executes a step group.
*
- * @param stepGroup The step group. Must be not <code>null</code>.
- * @param statusContainer A list holding the warnings occurred during the execution. Must be not <code>null</code>.
- * @param executedSteps A list holding the id's of the steps executed before. Must be not <code>null</code>.
- * @param fullQualifiedGroupId The hierarchy of all parent step group id's separated by "::". Must be not <code>null</code>.
+ * @param stepGroup The step group. Must not be <code>null</code>.
+ * @param statusContainer A list holding the warnings occurred during the execution. Must not be <code>null</code>.
+ * @param executedSteps A list holding the id's of the steps executed before. Must not be <code>null</code>.
+ * @param fullQualifiedGroupId The hierarchy of all parent step group id's separated by "::". Must not be <code>null</code>.
*
* @throws CoreException If the execution fails.
*/
@@ -524,10 +524,10 @@ public abstract class AbstractContextStepper extends ExecutableExtension impleme
* Executes a step groupable. The groupable might encapsulate a
* step or a step group.
*
- * @param step The step groupable. Must be not <code>null</code>.
- * @param statusContainer A list holding the warnings occurred during the execution. Must be not <code>null</code>.
- * @param executedSteps A list holding the id's of the steps executed before. Must be not <code>null</code>.
- * @param fullQualifiedParentId The hierarchy of all parent step group id's separated by "::". Must be not <code>null</code>.
+ * @param step The step groupable. Must not be <code>null</code>.
+ * @param statusContainer A list holding the warnings occurred during the execution. Must not be <code>null</code>.
+ * @param executedSteps A list holding the id's of the steps executed before. Must not be <code>null</code>.
+ * @param fullQualifiedParentId The hierarchy of all parent step group id's separated by "::". Must not be <code>null</code>.
*
* @throws CoreException If the execution failed.
*/
@@ -613,8 +613,8 @@ public abstract class AbstractContextStepper extends ExecutableExtension impleme
* Checks if all required dependencies have been executed before. If not, the method
* will throw an error status.
*
- * @param groupable The groupable. Must be not <code>null</code>.
- * @param executedSteps A list holding the id's of the steps executed before. Must be not <code>null</code>.
+ * @param groupable The groupable. Must not be <code>null</code>.
+ * @param executedSteps A list holding the id's of the steps executed before. Must not be <code>null</code>.
*
* @throws CoreException If a dependency has not been executed before.
*/
@@ -705,7 +705,7 @@ public abstract class AbstractContextStepper extends ExecutableExtension impleme
* steps returns {@link IProgressMonitor#UNKNOWN}, the total work will
* be unknown for the whole step group.
*
- * @param stepGroup The step group. Must be not <code>null</code>.
+ * @param stepGroup The step group. Must not be <code>null</code>.
* @return The total work required or {@link IProgressMonitor#UNKNOWN}.
*
* @throws CoreException If the total work of the step group cannot be determined.
@@ -756,8 +756,8 @@ public abstract class AbstractContextStepper extends ExecutableExtension impleme
* If the associated status contains a CANCEL status object, the passed in
* exception and the associated status objects are returned unmodified.
*
- * @param e The core exception. Must be not <code>null</code>.
- * @param statusContainer The list of non-severe status objects. Must be not <code>null</code>.
+ * @param e The core exception. Must not be <code>null</code>.
+ * @param statusContainer The list of non-severe status objects. Must not be <code>null</code>.
* @return The exception to re-throw or <code>null</code>.
*/
private CoreException normalizeStatus(Exception e, List<IStatus> statusContainer) {
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.runtime.stepper/src/org/eclipse/tcf/te/runtime/stepper/extensions/ContextStepGroup.java b/target_explorer/plugins/org.eclipse.tcf.te.runtime.stepper/src/org/eclipse/tcf/te/runtime/stepper/extensions/ContextStepGroup.java
index f61d8d0db..bc00b8d12 100644
--- a/target_explorer/plugins/org.eclipse.tcf.te.runtime.stepper/src/org/eclipse/tcf/te/runtime/stepper/extensions/ContextStepGroup.java
+++ b/target_explorer/plugins/org.eclipse.tcf.te.runtime.stepper/src/org/eclipse/tcf/te/runtime/stepper/extensions/ContextStepGroup.java
@@ -732,7 +732,7 @@ public class ContextStepGroup extends AbstractContextStepGroup {
* and valid for the given type id and mode.
*
* @param step The step. Must not be <code>null</code>.
- * @param contexts The array of context objects. Must be not <code>null</code>.
+ * @param contexts The array of context objects. Must not be <code>null</code>.
*
* @throws CoreException If a required step or step group is not available or not valid.
*/
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.runtime.stepper/src/org/eclipse/tcf/te/runtime/stepper/interfaces/IContextStepGroup.java b/target_explorer/plugins/org.eclipse.tcf.te.runtime.stepper/src/org/eclipse/tcf/te/runtime/stepper/interfaces/IContextStepGroup.java
index 09d3ae664..054fefc43 100644
--- a/target_explorer/plugins/org.eclipse.tcf.te.runtime.stepper/src/org/eclipse/tcf/te/runtime/stepper/interfaces/IContextStepGroup.java
+++ b/target_explorer/plugins/org.eclipse.tcf.te.runtime.stepper/src/org/eclipse/tcf/te/runtime/stepper/interfaces/IContextStepGroup.java
@@ -31,7 +31,7 @@ public interface IContextStepGroup extends IExecutableExtension {
* Returns the list of steps or step groups enlisted and enabled in the group for the
* given contexts.
*
- * @param contexts The array of context objects. Must be not <code>null</code>.
+ * @param contexts The array of context objects. Must not be <code>null</code>.
* @return The list of steps and step groups or an empty array.
*
* @throws CoreException If the steps cannot be determined.
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.runtime.stepper/src/org/eclipse/tcf/te/runtime/stepper/interfaces/IContextStepGroupIterator.java b/target_explorer/plugins/org.eclipse.tcf.te.runtime.stepper/src/org/eclipse/tcf/te/runtime/stepper/interfaces/IContextStepGroupIterator.java
index 2d1da0289..9e1043dfb 100644
--- a/target_explorer/plugins/org.eclipse.tcf.te.runtime.stepper/src/org/eclipse/tcf/te/runtime/stepper/interfaces/IContextStepGroupIterator.java
+++ b/target_explorer/plugins/org.eclipse.tcf.te.runtime.stepper/src/org/eclipse/tcf/te/runtime/stepper/interfaces/IContextStepGroupIterator.java
@@ -22,10 +22,10 @@ public interface IContextStepGroupIterator extends IExecutableExtension {
/**
* Initialize the iterator.
*
- * @param context The context. Must be not <code>null</code>.
- * @param data The data. Must be not <code>null</code>.
- * @param fullQualifiedId The full qualified id for this step. Must be not <code>null</code>.
- * @param monitor The progress monitor. Must be not <code>null</code>.
+ * @param context The context. Must not be <code>null</code>.
+ * @param data The data. Must not be <code>null</code>.
+ * @param fullQualifiedId The full qualified id for this step. Must not be <code>null</code>.
+ * @param monitor The progress monitor. Must not be <code>null</code>.
*/
public void initialize(IContext context, IPropertiesContainer data, IFullQualifiedId fullQualifiedId, IProgressMonitor monitor);
@@ -38,10 +38,10 @@ public interface IContextStepGroupIterator extends IExecutableExtension {
/**
* Check if there is a next iteration possible.
*
- * @param context The context. Must be not <code>null</code>.
- * @param data The data. Must be not <code>null</code>.
- * @param fullQualifiedId The full qualified id for this step. Must be not <code>null</code>.
- * @param monitor The progress monitor. Must be not <code>null</code>.
+ * @param context The context. Must not be <code>null</code>.
+ * @param data The data. Must not be <code>null</code>.
+ * @param fullQualifiedId The full qualified id for this step. Must not be <code>null</code>.
+ * @param monitor The progress monitor. Must not be <code>null</code>.
* @return <code>true</code> if another iteration is possible.
*/
public boolean hasNext(IContext context, IPropertiesContainer data, IFullQualifiedId fullQualifiedId, IProgressMonitor monitor);
@@ -49,10 +49,10 @@ public interface IContextStepGroupIterator extends IExecutableExtension {
/**
* Set the next iteration to the data using the full qualified id.
*
- * @param context The context. Must be not <code>null</code>.
- * @param data The data. Must be not <code>null</code>.
- * @param fullQualifiedId The full qualified id for this step. Must be not <code>null</code>.
- * @param monitor The progress monitor. Must be not <code>null</code>.
+ * @param context The context. Must not be <code>null</code>.
+ * @param data The data. Must not be <code>null</code>.
+ * @param fullQualifiedId The full qualified id for this step. Must not be <code>null</code>.
+ * @param monitor The progress monitor. Must not be <code>null</code>.
* @throws CoreException
*/
public void next(IContext context, IPropertiesContainer data, IFullQualifiedId fullQualifiedId, IProgressMonitor monitor) throws CoreException;

Back to the top