]> gerrit.simantics Code Review - simantics/3d.git/blob - org.simantics.plant3d.product/src/org/simantics/plant3d/product/Activator.java
Use IMapping<Resource,INode> in node maps.
[simantics/3d.git] / org.simantics.plant3d.product / src / org / simantics / plant3d / product / Activator.java
1 package org.simantics.plant3d.product;
2
3 import org.osgi.framework.BundleActivator;
4 import org.osgi.framework.BundleContext;
5
6 public class Activator implements BundleActivator {
7
8         private static BundleContext context;
9
10         static BundleContext getContext() {
11                 return context;
12         }
13
14         /*
15          * (non-Javadoc)
16          * @see org.osgi.framework.BundleActivator#start(org.osgi.framework.BundleContext)
17          */
18         public void start(BundleContext bundleContext) throws Exception {
19                 Activator.context = bundleContext;
20         }
21
22         /*
23          * (non-Javadoc)
24          * @see org.osgi.framework.BundleActivator#stop(org.osgi.framework.BundleContext)
25          */
26         public void stop(BundleContext bundleContext) throws Exception {
27                 Activator.context = null;
28         }
29
30 }