/* * Copyright (c) 2006-2012 XMind Ltd. and others. * * This file is a part of XMind 3. XMind releases 3 and above are dual-licensed * under the Eclipse Public License (EPL), which is available at * http://www.eclipse.org/legal/epl-v10.html and the GNU Lesser General Public * License (LGPL), which is available at http://www.gnu.org/licenses/lgpl.html * See http://www.xmind.net/license.html for details. * * Contributors: XMind Ltd. - initial API and implementation */ package net.xmind.share; import org.eclipse.core.runtime.IStatus; import org.eclipse.core.runtime.Status; import org.eclipse.ui.plugin.AbstractUIPlugin; import org.osgi.framework.BundleContext; /** * The activator class controls the plug-in life cycle */ public class XmindSharePlugin extends AbstractUIPlugin { // The plug-in ID public static final String PLUGIN_ID = "com.xmindshare.uploader"; //$NON-NLS-1$ // The shared instance private static XmindSharePlugin plugin; /** * The constructor */ public XmindSharePlugin() { } /* * (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); } /** * Returns the shared instance * * @return the shared instance */ public static XmindSharePlugin getDefault() { return plugin; } public static void log(String message) { getDefault().getLog().log(new Status(IStatus.INFO, PLUGIN_ID, message)); } public static void log(Throwable e, String message) { getDefault().getLog().log( new Status(IStatus.INFO, PLUGIN_ID, message, e)); } }