]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.workbench/src/org/simantics/workbench/internal/Activator.java
Include acorn db in db.client feature and make it the default db driver
[simantics/platform.git] / bundles / org.simantics.workbench / src / org / simantics / workbench / internal / Activator.java
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
8  *\r
9  * Contributors:\r
10  *     VTT Technical Research Centre of Finland - initial API and implementation\r
11  *******************************************************************************/\r
12 package org.simantics.workbench.internal;\r
13 \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
20 \r
21 /**\r
22  * The main plugin class to be used in the desktop.\r
23  */\r
24 public class Activator extends AbstractUIPlugin {\r
25 \r
26     public static final String PLUGIN_ID = "org.simantics.workbench";\r
27 \r
28     // The shared instance.\r
29     private static Activator   plugin;\r
30 \r
31     /**\r
32      * The constructor.\r
33      */\r
34     public Activator() {\r
35         plugin = this;\r
36     }\r
37 \r
38     @Override\r
39     public void start(BundleContext context) throws Exception {\r
40 \r
41         WorkbenchShutdownServiceImpl.initialize(context);\r
42 \r
43         super.start(context);\r
44 \r
45     }\r
46 \r
47     /**\r
48      * This method is called when the plug-in is stopped\r
49      */\r
50     @Override\r
51     public void stop(BundleContext context) throws Exception {\r
52 \r
53         WorkbenchShutdownServiceImpl.close();\r
54 \r
55         super.stop(context);\r
56 \r
57         plugin = null;\r
58 \r
59     }\r
60 \r
61     /**\r
62      * Returns the shared instance.\r
63      */\r
64     public static Activator getDefault() {\r
65         return plugin;\r
66     }\r
67 \r
68     /**\r
69      * Returns an image descriptor for the image file at the given plug-in\r
70      * relative path.\r
71      * \r
72      * @param path the path\r
73      * @return the image descriptor\r
74      */\r
75     public static ImageDescriptor getImageDescriptor(String path) {\r
76         return AbstractUIPlugin.imageDescriptorFromPlugin(PLUGIN_ID, path);\r
77     }\r
78 \r
79     public static void logError(String message, Throwable e) {\r
80         getDefault().getLog().log(new Status(IStatus.ERROR, PLUGIN_ID, message, e));\r
81     }\r
82 \r
83 }\r
84 \r