]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.views.text/src/org/simantics/views/text/internal/Activator.java
Merge branch 'feature/funcwrite'
[simantics/platform.git] / bundles / org.simantics.views.text / src / org / simantics / views / text / internal / Activator.java
1 /*******************************************************************************
2  * Copyright (c) 2017 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  *     Semantum Oy - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.views.text.internal;
13
14 import org.eclipse.ui.plugin.AbstractUIPlugin;
15 import org.osgi.framework.BundleContext;
16
17 /**
18  * The activator class controls the plug-in life cycle
19  * @author Tuukka Lehtonen
20  * @since 1.28.0
21  */
22 public class Activator extends AbstractUIPlugin {
23
24         // The plug-in ID
25         public static final String PLUGIN_ID = "org.simantics.views.text"; //$NON-NLS-1$
26
27         // The shared instance
28         private static Activator plugin;
29         
30         /**
31          * The constructor
32          */
33         public Activator() {
34         }
35
36         /*
37          * (non-Javadoc)
38          * @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext)
39          */
40         public void start(BundleContext context) throws Exception {
41                 super.start(context);
42                 plugin = this;
43         }
44
45         /*
46          * (non-Javadoc)
47          * @see org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext)
48          */
49         public void stop(BundleContext context) throws Exception {
50                 plugin = null;
51                 super.stop(context);
52         }
53
54         /**
55          * Returns the shared instance
56          *
57          * @return the shared instance
58          */
59         public static Activator getDefault() {
60                 return plugin;
61         }
62
63 }