Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2007-03-14 23:10:20 +0000
committerslewis2007-03-14 23:10:20 +0000
commit3f1e79de77f829e3774e8ddb5a80ce5b6868d9ba (patch)
treef929db2efd9ef316c8eb9c6db7c5049c8aea9024 /incubation
parent48ea68e6fa3adaaf81f51e056e573ab06f0c48bf (diff)
downloadorg.eclipse.ecf-3f1e79de77f829e3774e8ddb5a80ce5b6868d9ba.tar.gz
org.eclipse.ecf-3f1e79de77f829e3774e8ddb5a80ce5b6868d9ba.tar.xz
org.eclipse.ecf-3f1e79de77f829e3774e8ddb5a80ce5b6868d9ba.zip
Changes to remove references to Plugin class.
Diffstat (limited to 'incubation')
-rw-r--r--incubation/bundles/org.eclipse.ecf.bulletinboard/META-INF/MANIFEST.MF5
-rw-r--r--incubation/bundles/org.eclipse.ecf.bulletinboard/src/org/eclipse/ecf/internal/bulletinboard/BulletinBoardPlugin.java6
2 files changed, 5 insertions, 6 deletions
diff --git a/incubation/bundles/org.eclipse.ecf.bulletinboard/META-INF/MANIFEST.MF b/incubation/bundles/org.eclipse.ecf.bulletinboard/META-INF/MANIFEST.MF
index 722568bfb..b3d25a3c1 100644
--- a/incubation/bundles/org.eclipse.ecf.bulletinboard/META-INF/MANIFEST.MF
+++ b/incubation/bundles/org.eclipse.ecf.bulletinboard/META-INF/MANIFEST.MF
@@ -6,10 +6,11 @@ Bundle-Version: 0.1.0
Bundle-Activator: org.eclipse.ecf.internal.bulletinboard.BulletinBoardPlugin
Bundle-Vendor: Erkki Lindpere
Bundle-Localization: plugin
-Require-Bundle: org.eclipse.core.runtime,
- org.eclipse.ecf
+Require-Bundle: org.eclipse.ecf,
+ org.eclipse.equinox.common
Eclipse-LazyStart: true
Export-Package: org.eclipse.ecf.bulletinboard,
org.eclipse.ecf.internal.bulletinboard;x-internal:=true
Bundle-RequiredExecutionEnvironment: CDC-1.1/Foundation-1.1,
J2SE-1.4
+Import-Package: org.osgi.framework;version="1.4.0"
diff --git a/incubation/bundles/org.eclipse.ecf.bulletinboard/src/org/eclipse/ecf/internal/bulletinboard/BulletinBoardPlugin.java b/incubation/bundles/org.eclipse.ecf.bulletinboard/src/org/eclipse/ecf/internal/bulletinboard/BulletinBoardPlugin.java
index caa850cfa..36e5df121 100644
--- a/incubation/bundles/org.eclipse.ecf.bulletinboard/src/org/eclipse/ecf/internal/bulletinboard/BulletinBoardPlugin.java
+++ b/incubation/bundles/org.eclipse.ecf.bulletinboard/src/org/eclipse/ecf/internal/bulletinboard/BulletinBoardPlugin.java
@@ -10,13 +10,13 @@
*******************************************************************************/
package org.eclipse.ecf.internal.bulletinboard;
-import org.eclipse.core.runtime.Plugin;
+import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
/**
* The activator class controls the plug-in life cycle
*/
-public class BulletinBoardPlugin extends Plugin {
+public class BulletinBoardPlugin implements BundleActivator {
// The plug-in ID
public static final String PLUGIN_ID = "org.eclipse.ecf.bulletinboard";
@@ -36,7 +36,6 @@ public class BulletinBoardPlugin extends Plugin {
* @see org.eclipse.core.runtime.Plugins#start(org.osgi.framework.BundleContext)
*/
public void start(BundleContext context) throws Exception {
- super.start(context);
}
/*
@@ -45,7 +44,6 @@ public class BulletinBoardPlugin extends Plugin {
*/
public void stop(BundleContext context) throws Exception {
plugin = null;
- super.stop(context);
}
/**

Back to the top