Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'target_explorer/plugins/org.eclipse.tm.te.rcp/src/org/eclipse/tm/te/rcp/activator/ProductBundleActivator.java')
-rw-r--r--target_explorer/plugins/org.eclipse.tm.te.rcp/src/org/eclipse/tm/te/rcp/activator/ProductBundleActivator.java54
1 files changed, 0 insertions, 54 deletions
diff --git a/target_explorer/plugins/org.eclipse.tm.te.rcp/src/org/eclipse/tm/te/rcp/activator/ProductBundleActivator.java b/target_explorer/plugins/org.eclipse.tm.te.rcp/src/org/eclipse/tm/te/rcp/activator/ProductBundleActivator.java
deleted file mode 100644
index ea22642f4..000000000
--- a/target_explorer/plugins/org.eclipse.tm.te.rcp/src/org/eclipse/tm/te/rcp/activator/ProductBundleActivator.java
+++ /dev/null
@@ -1,54 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2011 Wind River Systems, 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:
- * Wind River Systems - initial API and implementation
- *******************************************************************************/
-package org.eclipse.tm.te.rcp.activator;
-
-import org.osgi.framework.BundleActivator;
-import org.osgi.framework.BundleContext;
-
-/**
- * The activator class controls the plug-in life cycle
- */
-public class ProductBundleActivator implements BundleActivator {
- // The bundle context
- private static BundleContext context;
-
- /**
- * Returns the bundle context
- *
- * @return the bundle context
- */
- public static BundleContext getContext() {
- return context;
- }
-
- /**
- * Convenience method which returns the unique identifier of this plugin.
- */
- public static String getUniqueIdentifier() {
- if (getContext() != null && getContext().getBundle() != null) {
- return getContext().getBundle().getSymbolicName();
- }
- return null;
- }
-
- /* (non-Javadoc)
- * @see org.osgi.framework.BundleActivator#start(org.osgi.framework.BundleContext)
- */
- public void start(BundleContext bundleContext) throws Exception {
- ProductBundleActivator.context = bundleContext;
- }
-
- /* (non-Javadoc)
- * @see org.osgi.framework.BundleActivator#stop(org.osgi.framework.BundleContext)
- */
- public void stop(BundleContext bundleContext) throws Exception {
- ProductBundleActivator.context = null;
- }
-}

Back to the top