]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.db.services/src/org/simantics/db/services/internal/Activator.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.db.services / src / org / simantics / db / services / internal / 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.db.services.internal;
13
14 import org.eclipse.core.runtime.Plugin;
15 import org.osgi.framework.BundleContext;
16
17 public class Activator extends Plugin {
18
19     // The plug-in ID
20     public static final String PLUGIN_ID = "org.simantics.db.services";
21     
22     // The shared instance
23     private static Activator plugin;
24     private BundleContext context;
25     
26     public Activator() {
27     }
28     
29     public void start(BundleContext context) throws Exception {
30         super.start(context);        
31         plugin = this;
32         this.context = context;
33         //AdapterRegistry2.getInstance().initialize(context);
34     }
35     
36     @Override
37     public void stop(BundleContext context) throws Exception {
38         plugin = null;
39         this.context = null;
40         super.stop(context);
41     }
42
43     /**
44      * Returns the shared instance
45      *
46      * @return the shared instance
47      */
48     public static Activator getDefault() {
49         return plugin;
50     }
51     
52     public BundleContext getContext() {
53         return context;
54     }
55
56 }