diff options
author | slewis | 2010-04-19 22:26:14 -0400 |
---|---|---|
committer | slewis | 2010-04-19 22:26:14 -0400 |
commit | b8bfe1f315c626a0f98d1bc34905780855288457 (patch) | |
tree | 7217ff3f9ceb8199903b99a9d4756f10dece5c11 | |
parent | 09507aa981369d94517441ef67d4189367f8609d (diff) | |
download | org.eclipse.ecf-b8bfe1f315c626a0f98d1bc34905780855288457.tar.gz org.eclipse.ecf-b8bfe1f315c626a0f98d1bc34905780855288457.tar.xz org.eclipse.ecf-b8bfe1f315c626a0f98d1bc34905780855288457.zip |
Update to IHello service
2 files changed, 3 insertions, 3 deletions
diff --git a/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.ds.consumer/META-INF/MANIFEST.MF b/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.ds.consumer/META-INF/MANIFEST.MF index a742617d1..49d910529 100644 --- a/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.ds.consumer/META-INF/MANIFEST.MF +++ b/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.ds.consumer/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: %bundleName Bundle-SymbolicName: org.eclipse.ecf.examples.remoteservices.hello.ds.consumer;singleton:=true -Bundle-Version: 1.1.0.qualifier +Bundle-Version: 2.0.0.qualifier Bundle-Vendor: %bundleProvider Bundle-RequiredExecutionEnvironment: J2SE-1.5, J2SE-1.4, diff --git a/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.ds.consumer/src/org/eclipse/ecf/examples/internal/remoteservices/hello/ds/consumer/HelloClientComponent.java b/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.ds.consumer/src/org/eclipse/ecf/examples/internal/remoteservices/hello/ds/consumer/HelloClientComponent.java index 4b1a338ce..dea199bb1 100644 --- a/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.ds.consumer/src/org/eclipse/ecf/examples/internal/remoteservices/hello/ds/consumer/HelloClientComponent.java +++ b/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.ds.consumer/src/org/eclipse/ecf/examples/internal/remoteservices/hello/ds/consumer/HelloClientComponent.java @@ -39,8 +39,8 @@ public class HelloClientComponent { if (proxy instanceof IHelloAsync) { IHelloAsync helloA = (IHelloAsync) proxy; // Create callback for use in IHelloAsync - IAsyncCallback callback = new IAsyncCallback<Void>() { - public void onSuccess(Void result) { + IAsyncCallback callback = new IAsyncCallback<String>() { + public void onSuccess(String result) { System.out.println("COMPLETED remote call with callback SUCCESS with result="+result); System.out.println(); } |