]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.simulation/src/org/simantics/simulation/Activator.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.simulation / src / org / simantics / simulation / 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.simulation;\r
13 import org.eclipse.core.runtime.IStatus;\r
14 import org.eclipse.core.runtime.Plugin;\r
15 import org.eclipse.core.runtime.Status;\r
16 import org.osgi.framework.BundleContext;\r
17 \r
18 \r
19 public class Activator extends Plugin {\r
20 \r
21     public static final String PLUGIN_ID = "org.simantics.simulation";\r
22 \r
23     // The shared instance.\r
24     private static Activator   plugin;\r
25 \r
26     /**\r
27      * The constructor.\r
28      */\r
29     public Activator() {\r
30         plugin = this;\r
31     }\r
32 \r
33     @Override\r
34     public void start(BundleContext context) throws Exception {\r
35 \r
36         super.start(context);\r
37 \r
38     }\r
39 \r
40     /**\r
41      * This method is called when the plug-in is stopped\r
42      */\r
43     @Override\r
44     public void stop(BundleContext context) throws Exception {\r
45 \r
46         super.stop(context);\r
47 \r
48         plugin = null;\r
49 \r
50     }\r
51 \r
52     /**\r
53      * Returns the shared instance.\r
54      */\r
55     public static Activator getDefault() {\r
56         return plugin;\r
57     }\r
58 \r
59     public static void logError(String message, Throwable e) {\r
60         getDefault().getLog().log(new Status(IStatus.ERROR, PLUGIN_ID, message, e));\r
61     }\r
62 \r
63 }\r