From c855bc7c27401dff014cff8774de5236b8162451 Mon Sep 17 00:00:00 2001 From: Francois Chouinard Date: Tue, 25 Aug 2009 18:59:52 +0000 Subject: [PATCH] Renamed the bundle class. --- .../org/eclipse/linuxtools/tmf/Activator.java | 78 ------------------- 1 file changed, 78 deletions(-) delete mode 100644 org.eclipse.linuxtools.tmf/src/org/eclipse/linuxtools/tmf/Activator.java diff --git a/org.eclipse.linuxtools.tmf/src/org/eclipse/linuxtools/tmf/Activator.java b/org.eclipse.linuxtools.tmf/src/org/eclipse/linuxtools/tmf/Activator.java deleted file mode 100644 index 9ca38df747..0000000000 --- a/org.eclipse.linuxtools.tmf/src/org/eclipse/linuxtools/tmf/Activator.java +++ /dev/null @@ -1,78 +0,0 @@ -/******************************************************************************* - * Copyright (c) 2009 Ericsson - * - * 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: - * Francois Chouinard (fchouinard@gmail.com) - Initial API and implementation - *******************************************************************************/ - -package org.eclipse.linuxtools.tmf; - -import org.eclipse.ui.plugin.AbstractUIPlugin; -import org.osgi.framework.BundleContext; - -/** - * Activator - *

- * The activator class controls the plug-in life cycle - */ -public class Activator extends AbstractUIPlugin { - - // ======================================================================== - // Attributes - // ======================================================================== - - // The plug-in ID - public static final String PLUGIN_ID = "org.eclipse.linuxtools.tmf"; - - // The shared instance - private static Activator plugin; - - // ======================================================================== - // Constructors - // ======================================================================== - - /** - * The constructor - */ - public Activator() { - } - - // ======================================================================== - // Accessors - // ======================================================================== - - /** - * @return the shared instance - */ - public static Activator getDefault() { - return plugin; - } - - // ======================================================================== - // Operators - // ======================================================================== - - /* - * (non-Javadoc) - * @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext) - */ - public void start(BundleContext context) throws Exception { - super.start(context); - plugin = this; - } - - /* - * (non-Javadoc) - * @see org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext) - */ - public void stop(BundleContext context) throws Exception { - plugin = null; - super.stop(context); - } - -} -- 2.34.1