]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.charts/src/org/simantics/charts/Activator.java
Faster bounds calculation for zoom to selection and navigate to target
[simantics/platform.git] / bundles / org.simantics.charts / src / org / simantics / charts / Activator.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 2011 Association for Decentralized Information Management in
3  * 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.charts;
13
14 import org.eclipse.ui.plugin.AbstractUIPlugin;
15 import org.osgi.framework.BundleContext;
16 import org.simantics.charts.ui.ChartItemIcon;
17
18 /**
19  * The activator class controls the plug-in life cycle
20  */
21 public class Activator extends AbstractUIPlugin {
22
23         // The plug-in ID
24         public static final String PLUGIN_ID = "org.simantics.charts";
25
26         // The shared instance
27         private static Activator plugin;
28         
29     public ChartItemIcon chartIcons;
30         
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                 chartIcons = new ChartItemIcon(); 
46         }
47
48         /*
49          * (non-Javadoc)
50          * @see org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext)
51          */
52         public void stop(BundleContext context) throws Exception {
53                 plugin = null;
54                 super.stop(context);
55         }
56
57         /**
58          * Returns the shared instance
59          *
60          * @return the shared instance
61          */
62         public static Activator getDefault() {
63                 return plugin;
64         }
65
66 }