Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 23c57b6fa06d3cf125b99075108c55ff20b11867 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*******************************************************************************
 * 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.terminals.core.launcher;

import org.eclipse.core.runtime.Assert;
import org.eclipse.core.runtime.PlatformObject;
import org.eclipse.tcf.te.core.terminals.interfaces.ITerminalTabListener;

/**
 * Remote terminals launcher terminal tab listener implementation.
 * <p>
 * <b>Note:</b> The notifications may occur in every thread!
 */
public class TerminalsLauncherTerminalTabListener extends PlatformObject implements ITerminalTabListener {
	// Reference to the parent launcher
	private final TerminalsLauncher parent;

	/**
	 * Constructor.
	 *
	 * @param parent The parent launcher. Must not be <code>null</code>.
	 */
	public TerminalsLauncherTerminalTabListener(TerminalsLauncher parent) {
		super();

		Assert.isNotNull(parent);
		this.parent = parent;
	}

	/* (non-Javadoc)
	 * @see org.eclipse.tcf.te.core.terminals.interfaces.ITerminalTabListener#terminalTabDisposed(java.lang.Object, java.lang.Object)
	 */
	@Override
	public void terminalTabDisposed(Object source, Object data) {
		Assert.isNotNull(source);

		// The custom data object must be of type TerminalsLauncher and match the parent launcher
		if (data instanceof TerminalsLauncher && parent.equals(data)) {
			// Terminate the remote terminal (leads to the disposal of the parent)
			parent.exit();
		}
	}
}

Back to the top