Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Stieber2012-08-20 08:59:00 +0000
committerUwe Stieber2012-08-20 08:59:00 +0000
commit5805635f20351911621d573dbc9f65178398d678 (patch)
tree860e68834aa95fc19d63aa73619f59ded557af2e /target_explorer/plugins/org.eclipse.tcf.te.runtime.services/src/org
parenta8145734a84329786a04ea82c172089a71a7f293 (diff)
downloadorg.eclipse.tcf-5805635f20351911621d573dbc9f65178398d678.tar.gz
org.eclipse.tcf-5805635f20351911621d573dbc9f65178398d678.tar.xz
org.eclipse.tcf-5805635f20351911621d573dbc9f65178398d678.zip
Target Explorer: Bug 379391 - [Terminal] Open Terminal sessions should be restored after quit / restart
Diffstat (limited to 'target_explorer/plugins/org.eclipse.tcf.te.runtime.services/src/org')
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.runtime.services/src/org/eclipse/tcf/te/runtime/services/interfaces/constants/ITerminalsConnectorConstants.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.runtime.services/src/org/eclipse/tcf/te/runtime/services/interfaces/constants/ITerminalsConnectorConstants.java b/target_explorer/plugins/org.eclipse.tcf.te.runtime.services/src/org/eclipse/tcf/te/runtime/services/interfaces/constants/ITerminalsConnectorConstants.java
index 3d2b820e7..a7ccdde83 100644
--- a/target_explorer/plugins/org.eclipse.tcf.te.runtime.services/src/org/eclipse/tcf/te/runtime/services/interfaces/constants/ITerminalsConnectorConstants.java
+++ b/target_explorer/plugins/org.eclipse.tcf.te.runtime.services/src/org/eclipse/tcf/te/runtime/services/interfaces/constants/ITerminalsConnectorConstants.java
@@ -36,11 +36,21 @@ public interface ITerminalsConnectorConstants {
public static final String PROP_DATA = "data"; //$NON-NLS-1$
/**
+ * Property: External selection to associate with the terminal tab.
+ */
+ public static final String PROP_SELECTION = "selection"; //$NON-NLS-1$
+
+ /**
* Property: Flag to force a new terminal tab.
*/
public static final String PROP_FORCE_NEW = "forceNew"; //$NON-NLS-1$
/**
+ * Property: Terminals launcher delegate id.
+ */
+ public static final String PROP_DELEGATE_ID = "delegateId"; //$NON-NLS-1$
+
+ /**
* Property: Terminals connector type id.
*/
public static final String PROP_CONNECTOR_TYPE_ID = "connector.type.id"; //$NON-NLS-1$

Back to the top