1 /*******************************************************************************
2 * Copyright (c) 2007, 2010 Association for Decentralized Information Management
4 * All rights reserved. This program and the accompanying materials
5 * are made available under the terms of the Eclipse Public License v1.0
6 * which accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
10 * VTT Technical Research Centre of Finland - initial API and implementation
11 *******************************************************************************/
12 package org.simantics.workbench.internal;
14 import org.eclipse.core.runtime.IStatus;
15 import org.eclipse.core.runtime.Status;
16 import org.eclipse.jface.resource.ImageDescriptor;
17 import org.eclipse.ui.plugin.AbstractUIPlugin;
18 import org.osgi.framework.BundleContext;
19 import org.simantics.ui.workbench.WorkbenchShutdownServiceImpl;
22 * The main plugin class to be used in the desktop.
24 public class Activator extends AbstractUIPlugin {
26 public static final String PLUGIN_ID = "org.simantics.workbench";
28 // The shared instance.
29 private static Activator plugin;
39 public void start(BundleContext context) throws Exception {
41 WorkbenchShutdownServiceImpl.initialize(context);
48 * This method is called when the plug-in is stopped
51 public void stop(BundleContext context) throws Exception {
53 WorkbenchShutdownServiceImpl.close();
62 * Returns the shared instance.
64 public static Activator getDefault() {
69 * Returns an image descriptor for the image file at the given plug-in
72 * @param path the path
73 * @return the image descriptor
75 public static ImageDescriptor getImageDescriptor(String path) {
76 return AbstractUIPlugin.imageDescriptorFromPlugin(PLUGIN_ID, path);
79 public static void logError(String message, Throwable e) {
80 getDefault().getLog().log(new Status(IStatus.ERROR, PLUGIN_ID, message, e));