Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Stieber2012-02-20 07:05:24 +0000
committerUwe Stieber2012-02-20 08:38:56 +0000
commitab8cd8c246dbb93b06f732f5a690114c77b8d4f4 (patch)
tree2b05fe06185529d356612bce07b8ccb010d5b47b /target_explorer/plugins/org.eclipse.tcf.te.runtime.stepper
parent5e7e69a25a56b5a37634056d65c32e13c93ea3ad (diff)
downloadorg.eclipse.tcf-ab8cd8c246dbb93b06f732f5a690114c77b8d4f4.tar.gz
org.eclipse.tcf-ab8cd8c246dbb93b06f732f5a690114c77b8d4f4.tar.xz
org.eclipse.tcf-ab8cd8c246dbb93b06f732f5a690114c77b8d4f4.zip
Target Explorer: Decode peer model type launch context
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/interfaces/IStepContext.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.runtime.stepper/src/org/eclipse/tcf/te/runtime/stepper/interfaces/IStepContext.java b/target_explorer/plugins/org.eclipse.tcf.te.runtime.stepper/src/org/eclipse/tcf/te/runtime/stepper/interfaces/IStepContext.java
index 47c9782ca..95afe26aa 100644
--- a/target_explorer/plugins/org.eclipse.tcf.te.runtime.stepper/src/org/eclipse/tcf/te/runtime/stepper/interfaces/IStepContext.java
+++ b/target_explorer/plugins/org.eclipse.tcf.te.runtime.stepper/src/org/eclipse/tcf/te/runtime/stepper/interfaces/IStepContext.java
@@ -9,6 +9,8 @@
*******************************************************************************/
package org.eclipse.tcf.te.runtime.stepper.interfaces;
+import java.io.IOException;
+
import org.eclipse.tcf.te.runtime.interfaces.properties.IPropertiesContainer;
import org.eclipse.tcf.te.runtime.model.interfaces.IModelNodeProvider;
@@ -71,6 +73,7 @@ public interface IStepContext extends IModelNodeProvider {
* in the context.
*
* @param value The persistable representation of the context. Must not be <code>null</code>.
+ * @throws IOException - if the decode operation fails
*/
- public void decode(String value);
+ public void decode(String value) throws IOException;
}

Back to the top