Skip to main content
summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorslewis2007-03-15 21:49:47 +0000
committerslewis2007-03-15 21:49:47 +0000
commit0678644fb70aa1027ab52d6cd29c81b3eb84cd59 (patch)
treed69da9c8906cc5747aab82818867b1e5c4a2a243 /doc
parent43c4d8bf8b97954e7393f14dd31c56f05fc070a6 (diff)
downloadorg.eclipse.ecf-0678644fb70aa1027ab52d6cd29c81b3eb84cd59.tar.gz
org.eclipse.ecf-0678644fb70aa1027ab52d6cd29c81b3eb84cd59.tar.xz
org.eclipse.ecf-0678644fb70aa1027ab52d6cd29c81b3eb84cd59.zip
Cleaned up projects with plugin.properties additions, manifest.mf cleanup
Diffstat (limited to 'doc')
-rw-r--r--doc/bundles/org.eclipse.ecf.tutorial/META-INF/MANIFEST.MF5
-rw-r--r--doc/bundles/org.eclipse.ecf.tutorial/plugin.properties13
-rw-r--r--doc/bundles/org.eclipse.ecf.tutorial/src/org/eclipse/ecf/tutorial/actions/StartClientAction.java20
3 files changed, 22 insertions, 16 deletions
diff --git a/doc/bundles/org.eclipse.ecf.tutorial/META-INF/MANIFEST.MF b/doc/bundles/org.eclipse.ecf.tutorial/META-INF/MANIFEST.MF
index 8c146a910..b1e92b8c8 100644
--- a/doc/bundles/org.eclipse.ecf.tutorial/META-INF/MANIFEST.MF
+++ b/doc/bundles/org.eclipse.ecf.tutorial/META-INF/MANIFEST.MF
@@ -1,10 +1,10 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
-Bundle-Name: ECF Tutorial Plug-in
+Bundle-Name: %plugin.name
Bundle-SymbolicName: org.eclipse.ecf.tutorial;singleton:=true
Bundle-Version: 1.0.0.v20070313
Bundle-Activator: org.eclipse.ecf.tutorial.Activator
-Bundle-Vendor: Eclipse.org
+Bundle-Vendor: %plugin.provider
Bundle-Localization: plugin
Require-Bundle: org.eclipse.core.runtime,
org.eclipse.ecf,
@@ -15,6 +15,5 @@ Require-Bundle: org.eclipse.core.runtime,
org.eclipse.ecf.provider.datashare,
org.eclipse.ecf.sharedobject
Eclipse-LazyStart: true
-Eclipse-AutoStart: true
Bundle-RequiredExecutionEnvironment: J2SE-1.4,
CDC-1.1/Foundation-1.1
diff --git a/doc/bundles/org.eclipse.ecf.tutorial/plugin.properties b/doc/bundles/org.eclipse.ecf.tutorial/plugin.properties
new file mode 100644
index 000000000..5bf45473d
--- /dev/null
+++ b/doc/bundles/org.eclipse.ecf.tutorial/plugin.properties
@@ -0,0 +1,13 @@
+/****************************************************************************
+* Copyright (c) 2004 Composent, Inc. 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:
+* Composent, Inc. - initial API and implementation
+*****************************************************************************/
+plugin.name=ECF Tutorial
+plugin.provider=Eclipse.org
+
diff --git a/doc/bundles/org.eclipse.ecf.tutorial/src/org/eclipse/ecf/tutorial/actions/StartClientAction.java b/doc/bundles/org.eclipse.ecf.tutorial/src/org/eclipse/ecf/tutorial/actions/StartClientAction.java
index 21914c7d8..e41a98d16 100644
--- a/doc/bundles/org.eclipse.ecf.tutorial/src/org/eclipse/ecf/tutorial/actions/StartClientAction.java
+++ b/doc/bundles/org.eclipse.ecf.tutorial/src/org/eclipse/ecf/tutorial/actions/StartClientAction.java
@@ -14,9 +14,6 @@ import org.eclipse.core.runtime.Status;
import org.eclipse.core.runtime.jobs.Job;
import org.eclipse.ecf.core.util.ECFException;
import org.eclipse.ecf.tutorial.Activator;
-import org.eclipse.ecf.tutorial.basic.Client4;
-import org.eclipse.ecf.tutorial.datashare.DsClient1;
-import org.eclipse.ecf.tutorial.datashare.DsClient2;
import org.eclipse.ecf.tutorial.scribbleshare.ScribbleClient;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.viewers.ISelection;
@@ -54,17 +51,14 @@ public class StartClientAction implements IWorkbenchWindowActionDelegate {
}
}
}
-
protected void createAndConnectClient() throws ECFException {
- //Client1 client = new Client1();
- //Client2 client = new Client2();
- //Client3 client = new Client4();
- //Client4 client = new Client4();
-
- //DsClient1 client = new DsClient1();
- //DsClient2 client = new DsClient2();
-
+ // Client1 client = new Client1();
+ // Client2 client = new Client2();
+ // Client3 client = new Client4();
+ // Client4 client = new Client4();
+ // DsClient1 client = new DsClient1();
+ // DsClient2 client = new DsClient2();
ScribbleClient client = new ScribbleClient();
client.createAndConnect();
-}
+ }
}

Back to the top