Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Stieber2012-11-27 10:35:22 +0000
committerUwe Stieber2012-11-27 10:36:17 +0000
commitd6354343b056188669e77db2ca246bd104fbde1f (patch)
tree15b521c955c7d751cea515c9b8417075c1ca3a40 /target_explorer/plugins/org.eclipse.tcf.te.runtime.services/src/org/eclipse
parent8d1cea1a1ec932ecf3a2c63fd21866512177964d (diff)
downloadorg.eclipse.tcf-d6354343b056188669e77db2ca246bd104fbde1f.tar.gz
org.eclipse.tcf-d6354343b056188669e77db2ca246bd104fbde1f.tar.xz
org.eclipse.tcf-d6354343b056188669e77db2ca246bd104fbde1f.zip
Target Explorer: Stream based terminal sessions can have stdout/stderr listeners attached
Diffstat (limited to 'target_explorer/plugins/org.eclipse.tcf.te.runtime.services/src/org/eclipse')
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.runtime.services/src/org/eclipse/tcf/te/runtime/services/interfaces/constants/ITerminalsConnectorConstants.java12
1 files changed, 12 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 20c140b65..50afc84ec 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
@@ -88,6 +88,18 @@ public interface ITerminalsConnectorConstants {
*/
public static final String PROP_LINE_SEPARATOR = "lineSeparator"; //$NON-NLS-1$
+ /**
+ * Property: The list of stdout listeners to attach to the corresponding stream monitor.
+ * <p>Typical for process and streams terminals.
+ */
+ public static final String PROP_STDOUT_LISTENERS = "stdoutListeners"; //$NON-NLS-1$
+
+ /**
+ * Property: The list of stderr listeners to attach to the corresponding stream monitor.
+ * <p>Typical for process and streams terminals.
+ */
+ public static final String PROP_STDERR_LISTENERS = "stderrListeners"; //$NON-NLS-1$
+
// ***** IP based terminals connector properties *****
/**

Back to the top