]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.graphfile/src/org/simantics/graphfile/Activator.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.graphfile / src / org / simantics / graphfile / Activator.java
1 /*******************************************************************************\r
2  * Copyright (c) 2013 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.graphfile;\r
13 \r
14 import org.eclipse.core.runtime.Plugin;\r
15 import org.osgi.framework.BundleContext;\r
16 \r
17 public class Activator extends Plugin {\r
18 \r
19         public static String PLUGIN_ID = "org.simantics.graphfile";\r
20 \r
21         private static Activator activator;\r
22 \r
23         private static BundleContext context;\r
24 \r
25         static BundleContext getContext() {\r
26                 return context;\r
27         }\r
28 \r
29         /*\r
30          * (non-Javadoc)\r
31          * @see org.osgi.framework.BundleActivator#start(org.osgi.framework.BundleContext)\r
32          */\r
33         public void start(BundleContext bundleContext) throws Exception {\r
34                 activator = this;\r
35                 Activator.context = bundleContext;\r
36                 super.start(context);\r
37         }\r
38 \r
39         /*\r
40          * (non-Javadoc)\r
41          * @see org.osgi.framework.BundleActivator#stop(org.osgi.framework.BundleContext)\r
42          */\r
43         public void stop(BundleContext bundleContext) throws Exception {\r
44                 super.stop(context);\r
45                 Activator.context = null;\r
46                 activator = null;\r
47         }\r
48 \r
49         public static Activator getDefault() {\r
50                 return activator;\r
51         }\r
52 \r
53 }\r