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