]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.simulation/src/org/simantics/simulation/Activator.java
Added new ExperimentRuns.createRun utility
[simantics/platform.git] / bundles / org.simantics.simulation / src / org / simantics / simulation / Activator.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management
3  * in Industry THTH ry.
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
8  *
9  * Contributors:
10  *     VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.simulation;
13 import org.eclipse.core.runtime.IStatus;
14 import org.eclipse.core.runtime.Plugin;
15 import org.eclipse.core.runtime.Status;
16 import org.osgi.framework.BundleContext;
17
18
19 public class Activator extends Plugin {
20
21     public static final String PLUGIN_ID = "org.simantics.simulation";
22
23     // The shared instance.
24     private static Activator   plugin;
25
26     /**
27      * The constructor.
28      */
29     public Activator() {
30         plugin = this;
31     }
32
33     @Override
34     public void start(BundleContext context) throws Exception {
35
36         super.start(context);
37
38     }
39
40     /**
41      * This method is called when the plug-in is stopped
42      */
43     @Override
44     public void stop(BundleContext context) throws Exception {
45
46         super.stop(context);
47
48         plugin = null;
49
50     }
51
52     /**
53      * Returns the shared instance.
54      */
55     public static Activator getDefault() {
56         return plugin;
57     }
58
59     public static void logError(String message, Throwable e) {
60         getDefault().getLog().log(new Status(IStatus.ERROR, PLUGIN_ID, message, e));
61     }
62
63 }