Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.tcf.rse/src/org/eclipse/tcf/internal/rse/ITCFService.java')
-rw-r--r--plugins/org.eclipse.tcf.rse/src/org/eclipse/tcf/internal/rse/ITCFService.java25
1 files changed, 25 insertions, 0 deletions
diff --git a/plugins/org.eclipse.tcf.rse/src/org/eclipse/tcf/internal/rse/ITCFService.java b/plugins/org.eclipse.tcf.rse/src/org/eclipse/tcf/internal/rse/ITCFService.java
new file mode 100644
index 000000000..79f1e4624
--- /dev/null
+++ b/plugins/org.eclipse.tcf.rse/src/org/eclipse/tcf/internal/rse/ITCFService.java
@@ -0,0 +1,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 {
+} \ No newline at end of file

Back to the top