/******************************************************************************* * Copyright (c) 2015 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: * Bernd Hufmann - Initial API and implementation *******************************************************************************/ package org.eclipse.tracecompass.tmf.remote.ui.tests; import org.eclipse.core.runtime.Plugin; import org.osgi.framework.BundleContext; /** * The activator class controls the plug-in life cycle * * @author Bernd Hufmann */ public class TmfRemoteUITestPlugin extends Plugin { // ------------------------------------------------------------------------ // Attributes // ------------------------------------------------------------------------ /** * The plug-in ID */ public static final String PLUGIN_ID = "org.eclipse.tracecompass.tmf.remote.ui.tests"; // The shared instance private static TmfRemoteUITestPlugin fPlugin; // ------------------------------------------------------------------------ // Constructors // ------------------------------------------------------------------------ /** * The constructor */ public TmfRemoteUITestPlugin() { setDefault(this); } // ------------------------------------------------------------------------ // Accessors // ------------------------------------------------------------------------ /** * @return the shared instance */ public static TmfRemoteUITestPlugin getDefault() { return fPlugin; } /** * @param plugin the shared instance */ private static void setDefault(TmfRemoteUITestPlugin plugin) { fPlugin = plugin; } // ------------------------------------------------------------------------ // Operations // ------------------------------------------------------------------------ @Override public void start(BundleContext context) throws Exception { super.start(context); setDefault(this); } @Override public void stop(BundleContext context) throws Exception { setDefault(null); super.stop(context); } }