Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 79f1e462475d94dc621a5709a4aa80de826a37aa (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
/*******************************************************************************
 * Adapted from org.eclipse.rse.internal.services.ssh.ISshService
 * Copyright (c) 2006, 2010 Wind River Systems, Inc.
 * 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:
 * Martin Oberhuber (Wind River) - initial API and implementation
 * Martin Oberhuber (Wind River) - [170910] Adopt RSE ITerminalService API for SSH
 * Intel Corporation             - [329654] Make all sub services operate against TCF connector service
 *******************************************************************************/
package org.eclipse.tm.internal.tcf.rse;

/**
 * Markup Interface for services using the TCFConnectorService.
 *
 * By implementing this interface, services can be recognized
 * as operating against an TCFConnectorService. The interface
 * is used as the key in a table for looking up the connector
 * service when needed.
 */
public interface ITCFService {
}

Back to the top