]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.browsing.ui.common/src/org/simantics/browsing/ui/common/Activator.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.browsing.ui.common / src / org / simantics / browsing / ui / common / Activator.java
1 /*******************************************************************************\r
2  * Copyright (c) 2007, 2010 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.browsing.ui.common;\r
13 \r
14 import java.net.URL;\r
15 \r
16 import org.eclipse.core.runtime.Plugin;\r
17 import org.osgi.framework.BundleContext;\r
18 \r
19 /**\r
20  * The activator class controls the plug-in life cycle\r
21  */\r
22 public class Activator extends Plugin {\r
23 \r
24     // The plug-in ID\r
25     public static final String PLUGIN_ID = "org.simantics.browsing.ui.common";\r
26 \r
27     /** Error logger */\r
28     private ErrorLogger errorLogger = new ErrorLogger(this);\r
29     \r
30     private static Activator plugin;\r
31     \r
32     /* (non-Javadoc)\r
33      * @see org.osgi.framework.BundleActivator#start(org.osgi.framework.BundleContext)\r
34      */\r
35     public void start(BundleContext context) throws Exception {\r
36         super.start(context);\r
37         plugin = this;\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 context) throws Exception {\r
44         super.stop(context);\r
45         plugin = null;\r
46     }\r
47 \r
48     public static Activator getDefault() {\r
49         return plugin;\r
50     }\r
51     \r
52     public static URL getDefaultResource(String name) {\r
53         Activator plugin = getDefault();\r
54         if(plugin == null) throw new IllegalStateException("The plugin is not active.");\r
55         return plugin.getBundle().getResource(name);\r
56     }\r
57     \r
58     public ErrorLogger getErrorLogger() {\r
59         return errorLogger;\r
60     }  \r
61     \r
62 }\r