Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2009-09-08 18:53:20 +0000
committerslewis2009-09-08 18:53:20 +0000
commitefd04c4b98704502bd1cfac979db13131aaf7858 (patch)
tree2e0ebf07f1fc78ba8d39533f735be7f58172f7c5 /framework
parent263f8c60bd14bedd807fee80e71794ed495e99ac (diff)
downloadorg.eclipse.ecf-efd04c4b98704502bd1cfac979db13131aaf7858.tar.gz
org.eclipse.ecf-efd04c4b98704502bd1cfac979db13131aaf7858.tar.xz
org.eclipse.ecf-efd04c4b98704502bd1cfac979db13131aaf7858.zip
Added IRemoteServiceProxy interface
Diffstat (limited to 'framework')
-rw-r--r--framework/bundles/org.eclipse.ecf.remoteservice/src/org/eclipse/ecf/remoteservice/IRemoteServiceProxy.java23
1 files changed, 23 insertions, 0 deletions
diff --git a/framework/bundles/org.eclipse.ecf.remoteservice/src/org/eclipse/ecf/remoteservice/IRemoteServiceProxy.java b/framework/bundles/org.eclipse.ecf.remoteservice/src/org/eclipse/ecf/remoteservice/IRemoteServiceProxy.java
new file mode 100644
index 000000000..e6f4bf61c
--- /dev/null
+++ b/framework/bundles/org.eclipse.ecf.remoteservice/src/org/eclipse/ecf/remoteservice/IRemoteServiceProxy.java
@@ -0,0 +1,23 @@
+/*******************************************************************************
+* Copyright (c) 2009 EclipseSource 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:
+* EclipseSource - initial API and implementation
+******************************************************************************/
+package org.eclipse.ecf.remoteservice;
+
+/**
+ * @since 3.1
+ */
+public interface IRemoteServiceProxy {
+
+ /**
+ * Get IRemoteService associated with this proxy
+ * @return IRemoteService for this proxy. May be <code>null</code>
+ * if no IRemoteService available for proxy.
+ */
+ IRemoteService getRemoteService();
+}

Back to the top