]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.spreadsheet.ui/src/org/simantics/spreadsheet/ui/Activator.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.spreadsheet.ui / src / org / simantics / spreadsheet / ui / 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.spreadsheet.ui;
13
14 import org.eclipse.jface.resource.ImageDescriptor;
15 import org.eclipse.ui.plugin.AbstractUIPlugin;
16 import org.osgi.framework.Bundle;
17 import org.osgi.framework.BundleContext;
18
19 /**
20  * The activator class controls the plug-in life cycle
21  */
22 public class Activator extends AbstractUIPlugin {
23
24         // The plug-in ID
25         public static final String PLUGIN_ID = "org.simantics.spreadsheet.ui";
26
27         // The shared instance
28         private static Activator plugin;
29         
30     public static ImageDescriptor EXCEL_IMAGE;
31         
32         /**
33          * The constructor
34          */
35         public Activator() {
36         }
37
38         /*
39          * (non-Javadoc)
40          * @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext)
41          */
42         public void start(BundleContext context) throws Exception {
43                 super.start(context);
44                 plugin = this;
45                 
46         Bundle bundle = context.getBundle();
47                 
48         EXCEL_IMAGE = ImageDescriptor.createFromURL(bundle.getResource("icons/excel.png"));
49                 
50         }
51
52         /*
53          * (non-Javadoc)
54          * @see org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext)
55          */
56         public void stop(BundleContext context) throws Exception {
57                 plugin = null;
58                 super.stop(context);
59         }
60
61         /**
62          * Returns the shared instance
63          *
64          * @return the shared instance
65          */
66         public static Activator getDefault() {
67                 return plugin;
68         }
69
70 }