Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.core/src/org/eclipse/tcf/te/core/interfaces/IConnectable.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.core/src/org/eclipse/tcf/te/core/interfaces/IConnectable.java b/target_explorer/plugins/org.eclipse.tcf.te.core/src/org/eclipse/tcf/te/core/interfaces/IConnectable.java
index 48b485f39..8ccb1b734 100644
--- a/target_explorer/plugins/org.eclipse.tcf.te.core/src/org/eclipse/tcf/te/core/interfaces/IConnectable.java
+++ b/target_explorer/plugins/org.eclipse.tcf.te.core/src/org/eclipse/tcf/te/core/interfaces/IConnectable.java
@@ -54,16 +54,16 @@ public interface IConnectable {
public boolean setConnectState(int state);
/**
- * Change the current connect state to the new state if possible.
- * Only states >= 0 are allowed.
+ * Change the current connect state to the new state if the given action is possible.
+ * Only actions >= 0 are allowed.
*
- * @param state The new state.
+ * @param action The state change action.
* @param callback The callback to indicate that the state change has been finished.
* @param monitor The progress monitor. If <code>null</code> a new job will be scheduled.
*
- * @throws IllegalArgumentException if the given state is not allowed (only states >= 0 are allowed)
+ * @throws IllegalArgumentException if the given action is not allowed (only actions >= 0 are allowed)
*/
- public void changeConnectState(int state, ICallback callback, IProgressMonitor monitor) throws IllegalArgumentException;
+ public void changeConnectState(int action, ICallback callback, IProgressMonitor monitor) throws IllegalArgumentException;
/**
* Check whether a state change to the given state is allowed.

Back to the top