Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Schwarz2014-09-29 07:42:21 +0000
committerTobias Schwarz2014-09-29 07:42:21 +0000
commit93c0de6a47c24a5a82afa991b8bec34045b0594e (patch)
treeda3bef6f3833de3bd1330a82f62f40f86548adfc /target_explorer/plugins/org.eclipse.tcf.te.runtime.services
parent03f197f4c84e04abda2f87944263c28f1b0c5eae (diff)
downloadorg.eclipse.tcf-93c0de6a47c24a5a82afa991b8bec34045b0594e.tar.gz
org.eclipse.tcf-93c0de6a47c24a5a82afa991b8bec34045b0594e.tar.xz
org.eclipse.tcf-93c0de6a47c24a5a82afa991b8bec34045b0594e.zip
Target Explorer: reattach debugger after connection lost/recovered
Diffstat (limited to 'target_explorer/plugins/org.eclipse.tcf.te.runtime.services')
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.runtime.services/src/org/eclipse/tcf/te/runtime/services/interfaces/IDebugService.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.runtime.services/src/org/eclipse/tcf/te/runtime/services/interfaces/IDebugService.java b/target_explorer/plugins/org.eclipse.tcf.te.runtime.services/src/org/eclipse/tcf/te/runtime/services/interfaces/IDebugService.java
index 37843b914..95c8294fc 100644
--- a/target_explorer/plugins/org.eclipse.tcf.te.runtime.services/src/org/eclipse/tcf/te/runtime/services/interfaces/IDebugService.java
+++ b/target_explorer/plugins/org.eclipse.tcf.te.runtime.services/src/org/eclipse/tcf/te/runtime/services/interfaces/IDebugService.java
@@ -20,6 +20,8 @@ import org.eclipse.tcf.te.runtime.interfaces.properties.IPropertiesContainer;
*/
public interface IDebugService extends IService {
+ public static final String PROPERTY_DEBUGGER_DETACHED = "debuggerDetached"; //$NON-NLS-1$
+
/**
* Launches a debug session for the given context and attaches to it. The attach
* can be parameterized via the data properties.

Back to the top