Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2009-06-02 22:20:38 +0000
committerslewis2009-06-02 22:20:38 +0000
commitde822ccee1c7d2ec075def3350ee1f1aee88980a (patch)
tree69b107ceb892a549ec341fa1f9e3a81bd94d2a12
parent8eb19a7c88d82ea61c39740f86d210d5f8d55ea6 (diff)
downloadorg.eclipse.ecf-de822ccee1c7d2ec075def3350ee1f1aee88980a.tar.gz
org.eclipse.ecf-de822ccee1c7d2ec075def3350ee1f1aee88980a.tar.xz
org.eclipse.ecf-de822ccee1c7d2ec075def3350ee1f1aee88980a.zip
Added documentation
-rw-r--r--examples/bundles/org.eclipse.ecf.examples.remoteservices.hello/src/org/eclipse/ecf/examples/remoteservices/hello/impl/Hello.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello/src/org/eclipse/ecf/examples/remoteservices/hello/impl/Hello.java b/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello/src/org/eclipse/ecf/examples/remoteservices/hello/impl/Hello.java
index f44be9391..88fe83a66 100644
--- a/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello/src/org/eclipse/ecf/examples/remoteservices/hello/impl/Hello.java
+++ b/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello/src/org/eclipse/ecf/examples/remoteservices/hello/impl/Hello.java
@@ -14,6 +14,8 @@ import org.eclipse.ecf.examples.remoteservices.hello.IHello;
public class Hello implements IHello {
public void hello(String from) {
+ // This is the implementation of the IHello service
+ // This method can be executed via remote proxies
System.out.println("hello from="+from);
}

Back to the top