Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2009-06-02 19:55:17 +0000
committerslewis2009-06-02 19:55:17 +0000
commit6e012b0711f5995fb9ab1a78411b813931e47916 (patch)
tree6db8a093c91305ac297658a76a58245d42ffef63
parent08a7056fa1e0c0b3d3845d84fd807f6918c0e9d6 (diff)
downloadorg.eclipse.ecf-6e012b0711f5995fb9ab1a78411b813931e47916.tar.gz
org.eclipse.ecf-6e012b0711f5995fb9ab1a78411b813931e47916.tar.xz
org.eclipse.ecf-6e012b0711f5995fb9ab1a78411b813931e47916.zip
Changed IHello interface to be more sophisticated, added in new launch configs
-rw-r--r--examples/bundles/org.eclipse.ecf.examples.remoteservices.hello/src/org/eclipse/ecf/examples/remoteservices/hello/IHello.java2
-rw-r--r--examples/bundles/org.eclipse.ecf.examples.remoteservices.hello/src/org/eclipse/ecf/examples/remoteservices/hello/impl/Hello.java4
2 files changed, 3 insertions, 3 deletions
diff --git a/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello/src/org/eclipse/ecf/examples/remoteservices/hello/IHello.java b/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello/src/org/eclipse/ecf/examples/remoteservices/hello/IHello.java
index 78ce127b0..5edf5dd60 100644
--- a/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello/src/org/eclipse/ecf/examples/remoteservices/hello/IHello.java
+++ b/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello/src/org/eclipse/ecf/examples/remoteservices/hello/IHello.java
@@ -11,6 +11,6 @@ package org.eclipse.ecf.examples.remoteservices.hello;
public interface IHello {
- public void hello();
+ public void hello(String from);
}
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 cda7ce0b3..8038575f9 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
@@ -13,8 +13,8 @@ import org.eclipse.ecf.examples.remoteservices.hello.IHello;
public class Hello implements IHello {
- public void hello() {
- System.out.println("Got hello() from unknown");
+ public void hello(String from) {
+ System.out.println("Got hello() from "+from);
}
}

Back to the top