Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Stieber2012-02-19 17:23:27 +0000
committerUwe Stieber2012-02-20 08:38:54 +0000
commit5e7e69a25a56b5a37634056d65c32e13c93ea3ad (patch)
tree627f5f38214bffeb6510b48ec43103c2b3084e12 /target_explorer/plugins/org.eclipse.tcf.te.runtime.stepper
parenta6543eb48761a3496c8be1694999d7b6d9a1bfdc (diff)
downloadorg.eclipse.tcf-5e7e69a25a56b5a37634056d65c32e13c93ea3ad.tar.gz
org.eclipse.tcf-5e7e69a25a56b5a37634056d65c32e13c93ea3ad.tar.xz
org.eclipse.tcf-5e7e69a25a56b5a37634056d65c32e13c93ea3ad.zip
Target Explorer: Fix encoded launch context class type detection
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.java9
1 files changed, 9 insertions, 0 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 082d9ff23..47c9782ca 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
@@ -58,6 +58,15 @@ public interface IStepContext extends IModelNodeProvider {
public String encode();
/**
+ * Returns the class name of the encoded context.
+ * <p>
+ * The class name is used to load the correct class to decode the persistable representation.
+ *
+ * @return The class name of the encoded context.
+ */
+ public String getEncodedClassName();
+
+ /**
* Decodes the given persistable representation and store the result
* in the context.
*

Back to the top