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