Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'target_explorer/plugins/org.eclipse.tcf.te.tcf.processes.core/src/org/eclipse/tcf/te/tcf/processes/core/launcher/ProcessStateChangeEvent.java')
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.tcf.processes.core/src/org/eclipse/tcf/te/tcf/processes/core/launcher/ProcessStateChangeEvent.java75
1 files changed, 75 insertions, 0 deletions
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.tcf.processes.core/src/org/eclipse/tcf/te/tcf/processes/core/launcher/ProcessStateChangeEvent.java b/target_explorer/plugins/org.eclipse.tcf.te.tcf.processes.core/src/org/eclipse/tcf/te/tcf/processes/core/launcher/ProcessStateChangeEvent.java
new file mode 100644
index 000000000..81c41402d
--- /dev/null
+++ b/target_explorer/plugins/org.eclipse.tcf.te.tcf.processes.core/src/org/eclipse/tcf/te/tcf/processes/core/launcher/ProcessStateChangeEvent.java
@@ -0,0 +1,75 @@
+/*******************************************************************************
+ * Copyright (c) 2011 Wind River Systems, Inc. and others. All rights reserved.
+ * This program and the accompanying materials are made available under the terms
+ * of the Eclipse Public License v1.0 which accompanies this distribution, and is
+ * available at http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Wind River Systems - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.tcf.te.tcf.processes.core.launcher;
+
+import org.eclipse.tcf.te.runtime.events.ChangeEvent;
+
+/**
+ * Remote process state change event implementation.
+ */
+public class ProcessStateChangeEvent extends ChangeEvent {
+ private static final long serialVersionUID = -8581379873446721643L;
+
+ /**
+ * Event id signaling if a remote process got created.
+ */
+ public static final String EVENT_PROCESS_CREATED = "created"; //$NON-NLS-1$
+
+ /**
+ * Event id signaling if a remote process terminated.
+ */
+ public static final String EVENT_PROCESS_TERMINATED = "terminated"; //$NON-NLS-1$
+
+ /**
+ * Event id signaling that the communication with the process got lost, probably because of a
+ * channel closed event. Any listener waiting for a process termination event should react on
+ * this event and stop waiting.
+ */
+ public static final String EVENT_LOST_COMMUNICATION = "lostCommunication"; //$NON-NLS-1$
+
+ // Exit code of the remote process
+ private final int exitCode;
+
+ /**
+ * Constructor.
+ *
+ * @param source The event source. Must not be <code>null</code>.
+ * @param eventId The event id. Must not be <code>null</code>.
+ * @param oldValue The old value or <code>null</code>.
+ * @param newValue The new value or <code>null</code>.
+ */
+ public ProcessStateChangeEvent(Object source, Object eventId, Object oldValue, Object newValue) {
+ this(source, eventId, oldValue, newValue, -1);
+ }
+
+ /**
+ * Constructor.
+ *
+ * @param source The event source. Must not be <code>null</code>.
+ * @param eventId The event id. Must not be <code>null</code>.
+ * @param oldValue The old value or <code>null</code>.
+ * @param newValue The new value or <code>null</code>.
+ * @param exitCode The process exit code or <code>-1</code> if not applicable.
+ */
+ public ProcessStateChangeEvent(Object source, Object eventId, Object oldValue, Object newValue, int exitCode) {
+ super(source, eventId, oldValue, newValue);
+ this.exitCode = exitCode;
+ }
+
+ /**
+ * Returns the remote process exit code. The exit code is only applicable if the set event id is
+ * {@link #EVENT_PROCESS_TERMINATED}.
+ *
+ * @return The remote process exit code or <code>-1</code> if not applicable.
+ */
+ public final int getExitCode() {
+ return exitCode;
+ }
+}

Back to the top