Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2010-04-21 04:54:07 +0000
committerslewis2010-04-21 04:54:07 +0000
commitaadb13cb254ea7c5d6001fc84781b246f6fa22ee (patch)
treef7d654f01c54284c0098f7ca4a37a815860b64a0 /examples/bundles/org.eclipse.ecf.examples.datashare.app
parent1bb155b0658694ed20306629a5beb7e68eb2a8e6 (diff)
downloadorg.eclipse.ecf-aadb13cb254ea7c5d6001fc84781b246f6fa22ee.tar.gz
org.eclipse.ecf-aadb13cb254ea7c5d6001fc84781b246f6fa22ee.tar.xz
org.eclipse.ecf-aadb13cb254ea7c5d6001fc84781b246f6fa22ee.zip
Fixes for application cardinality and threads
Diffstat (limited to 'examples/bundles/org.eclipse.ecf.examples.datashare.app')
-rw-r--r--examples/bundles/org.eclipse.ecf.examples.datashare.app/plugin.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/bundles/org.eclipse.ecf.examples.datashare.app/plugin.xml b/examples/bundles/org.eclipse.ecf.examples.datashare.app/plugin.xml
index 1b26dd9cf..8af9fe9c3 100644
--- a/examples/bundles/org.eclipse.ecf.examples.datashare.app/plugin.xml
+++ b/examples/bundles/org.eclipse.ecf.examples.datashare.app/plugin.xml
@@ -5,8 +5,8 @@
id="DatashareManager"
point="org.eclipse.core.runtime.applications">
<application
- cardinality="singleton-global"
- thread="main"
+ cardinality="*"
+ thread="any"
visible="true">
<run
class="org.eclipse.ecf.internal.examples.datashare.app.DatashareManagerApplication">
@@ -18,8 +18,8 @@
id="DatashareClient"
point="org.eclipse.core.runtime.applications">
<application
- cardinality="singleton-global"
- thread="main"
+ cardinality="*"
+ thread="any"
visible="true">
<run
class="org.eclipse.ecf.internal.examples.datashare.app.DatashareClientApplication">

Back to the top