]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.scenegraph.ui/src/org/simantics/scenegraph/ui/Activator.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.scenegraph.ui / src / org / simantics / scenegraph / ui / 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.scenegraph.ui;\r
13 \r
14 import org.eclipse.jface.resource.ImageDescriptor;\r
15 import org.eclipse.ui.plugin.AbstractUIPlugin;\r
16 import org.osgi.framework.BundleContext;\r
17 \r
18 /**\r
19  * @author Tuukka Lehtonen\r
20  */\r
21 public class Activator extends AbstractUIPlugin {\r
22 \r
23     // The plug-in ID\r
24     public static final String PLUGIN_ID = "org.simantics.scenegraph.ui";\r
25 \r
26     // The shared instance\r
27     private static Activator plugin;\r
28 \r
29     /**\r
30      * The constructor\r
31      */\r
32     public Activator() {\r
33     }\r
34 \r
35     /*\r
36      * (non-Javadoc)\r
37      * @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext)\r
38      */\r
39     @Override\r
40     public void start(BundleContext context) throws Exception {\r
41         super.start(context);\r
42         plugin = this;\r
43     }\r
44 \r
45     /*\r
46      * (non-Javadoc)\r
47      * @see org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext)\r
48      */\r
49     @Override\r
50     public void stop(BundleContext context) throws Exception {\r
51         plugin = null;\r
52         super.stop(context);\r
53     }\r
54 \r
55     /**\r
56      * Returns the shared instance\r
57      *\r
58      * @return the shared instance\r
59      */\r
60     public static Activator getDefault() {\r
61         return plugin;\r
62     }\r
63 \r
64     /**\r
65      * Returns an image descriptor for the image file at the given\r
66      * plug-in relative path.\r
67      *\r
68      * @param path the path\r
69      * @return the image descriptor\r
70      */\r
71     public static ImageDescriptor getImageDescriptor(String path) {\r
72         return AbstractUIPlugin.imageDescriptorFromPlugin(PLUGIN_ID, path);\r
73     }\r
74 \r
75 }\r