blob: 394e78e9b9d89b29042103ec3cd8ac398922bddd [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015, 2020 Obeo.
* 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:
* Obeo - initial API and implementation
*******************************************************************************/
package org.eclipse.emf.compare.diagram.ide.ui.sirius;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.ui.plugin.AbstractUIPlugin;
import org.osgi.framework.BundleContext;
/**
* The activator class controls the plug-in life cycle.
*
* @author <a href="mailto:axel.richard@obeo.fr">Axel Richard</a>
*/
public class CompareDiagramIDEUISiriusPlugin extends AbstractUIPlugin {
/** ID of this plug-in. */
public static final String PLUGIN_ID = "org.eclipse.emf.compare.diagram.ide.ui.sirius"; //$NON-NLS-1$
/** The shared instance. */
private static CompareDiagramIDEUISiriusPlugin plugin;
/**
* The constructor.
*/
public CompareDiagramIDEUISiriusPlugin() {
// Do nothing
}
/**
* {@inheritDoc}
*
* @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext)
*/
@Override
public void start(BundleContext context) throws Exception {
super.start(context);
plugin = this;
}
/**
* {@inheritDoc}
*
* @see org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext)
*/
@Override
public void stop(BundleContext context) throws Exception {
plugin = null;
super.stop(context);
}
/**
* Returns the shared instance.
*
* @return the shared instance
*/
public static CompareDiagramIDEUISiriusPlugin getDefault() {
return plugin;
}
/**
* Returns a plugin image descriptor.
*
* @param imagePath
* plugin relative path to the image
* @return ImageDescriptor image descriptor.
*/
public static ImageDescriptor getImageDescriptor(String imagePath) {
return imageDescriptorFromPlugin(PLUGIN_ID, imagePath);
}
/**
* Log an {@link Exception} in the {@link #getLog() current logger}.
*
* @param e
* the exception to be logged.
*/
public void log(Throwable e) {
getLog().log(new Status(IStatus.ERROR, PLUGIN_ID, e.getMessage(), e));
}
}