Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Schwarz2014-05-22 13:48:02 +0000
committerTobias Schwarz2014-05-22 13:48:25 +0000
commit1340c69debb8ba43a1f09635b8a3c3f7f8a5aec8 (patch)
treec9ea2ab68730e4c0033811a8f17f77dccaf6d9eb
parentd354abdc5c93ebd9c84cf9ddc81d4b69c2e87f32 (diff)
downloadorg.eclipse.tcf-1340c69debb8ba43a1f09635b8a3c3f7f8a5aec8.tar.gz
org.eclipse.tcf-1340c69debb8ba43a1f09635b8a3c3f7f8a5aec8.tar.xz
org.eclipse.tcf-1340c69debb8ba43a1f09635b8a3c3f7f8a5aec8.zip
Target Explorer: fix argument name
-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