# HG changeset patch # User tasneems@symbian.org # Date 1266275623 28800 # Node ID ad6de1d951adf462fdaddcc3ea735242bce5b50f # Parent 265af99a24027afa10519526d670cd00f808d1e0 Removed bluecove plugin diff -r 265af99a2402 -r ad6de1d951ad org.bluecove.Ver2.1.1/.classpath --- a/org.bluecove.Ver2.1.1/.classpath Mon Feb 15 15:06:04 2010 -0800 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,8 +0,0 @@ - - - - - - - - diff -r 265af99a2402 -r ad6de1d951ad org.bluecove.Ver2.1.1/.project --- a/org.bluecove.Ver2.1.1/.project Mon Feb 15 15:06:04 2010 -0800 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,28 +0,0 @@ - - - org.bluecove.Ver2.1.1 - - - - - - org.eclipse.jdt.core.javabuilder - - - - - org.eclipse.pde.ManifestBuilder - - - - - org.eclipse.pde.SchemaBuilder - - - - - - org.eclipse.pde.PluginNature - org.eclipse.jdt.core.javanature - - diff -r 265af99a2402 -r ad6de1d951ad org.bluecove.Ver2.1.1/.settings/org.eclipse.jdt.core.prefs --- a/org.bluecove.Ver2.1.1/.settings/org.eclipse.jdt.core.prefs Mon Feb 15 15:06:04 2010 -0800 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,8 +0,0 @@ -#Wed Jan 27 23:37:09 PST 2010 -eclipse.preferences.version=1 -org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled -org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 -org.eclipse.jdt.core.compiler.compliance=1.6 -org.eclipse.jdt.core.compiler.problem.assertIdentifier=error -org.eclipse.jdt.core.compiler.problem.enumIdentifier=error -org.eclipse.jdt.core.compiler.source=1.6 diff -r 265af99a2402 -r ad6de1d951ad org.bluecove.Ver2.1.1/META-INF/MANIFEST.MF --- a/org.bluecove.Ver2.1.1/META-INF/MANIFEST.MF Mon Feb 15 15:06:04 2010 -0800 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,17 +0,0 @@ -Manifest-Version: 1.0 -Bundle-ManifestVersion: 2 -Bundle-Name: BlueCove -Bundle-SymbolicName: org.bluecove.v2_1_1 -Bundle-Version: 1.0.0.qualifier -Bundle-Activator: org.bluecove.ver2_1_1.Activator -Require-Bundle: org.eclipse.core.runtime -Bundle-ActivationPolicy: lazy -Bundle-RequiredExecutionEnvironment: JavaSE-1.6 -Import-Package: com.intel.bluetooth, - javax.bluetooth, - javax.microedition.io, - javax.obex -Export-Package: com.intel.bluetooth, - javax.bluetooth, - javax.microedition.io, - javax.obex diff -r 265af99a2402 -r ad6de1d951ad org.bluecove.Ver2.1.1/build.properties --- a/org.bluecove.Ver2.1.1/build.properties Mon Feb 15 15:06:04 2010 -0800 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,4 +0,0 @@ -source.. = src/ -output.. = bin/ -bin.includes = META-INF/,\ - . diff -r 265af99a2402 -r ad6de1d951ad org.bluecove.Ver2.1.1/src/org/bluecove/ver2_1_1/Activator.java --- a/org.bluecove.Ver2.1.1/src/org/bluecove/ver2_1_1/Activator.java Mon Feb 15 15:06:04 2010 -0800 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,50 +0,0 @@ -package org.bluecove.ver2_1_1; - -import org.eclipse.core.runtime.Plugin; -import org.osgi.framework.BundleContext; - -/** - * The activator class controls the plug-in life cycle - */ -public class Activator extends Plugin { - - // The plug-in ID - public static final String PLUGIN_ID = "org.bluecove.v2_1_1"; - - // The shared instance - private static Activator plugin; - - /** - * The constructor - */ - public Activator() { - } - - /* - * (non-Javadoc) - * @see org.eclipse.core.runtime.Plugins#start(org.osgi.framework.BundleContext) - */ - public void start(BundleContext context) throws Exception { - super.start(context); - plugin = this; - } - - /* - * (non-Javadoc) - * @see org.eclipse.core.runtime.Plugin#stop(org.osgi.framework.BundleContext) - */ - public void stop(BundleContext context) throws Exception { - plugin = null; - super.stop(context); - } - - /** - * Returns the shared instance - * - * @return the shared instance - */ - public static Activator getDefault() { - return plugin; - } - -}