]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.threadlog/src/org/simantics/threadlog/internal/Activator.java
Tycho compilation changes for SVN version also.
[simantics/platform.git] / bundles / org.simantics.threadlog / src / org / simantics / threadlog / internal / 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.threadlog.internal;\r
13 \r
14 import org.eclipse.core.runtime.Plugin;\r
15 import org.osgi.framework.BundleContext;\r
16 import org.simantics.threadlog.ui.ThreadLogController;\r
17 \r
18 /**\r
19  * The activator class controls the plug-in life cycle\r
20  */\r
21 public class Activator extends Plugin {\r
22 \r
23         // The plug-in ID\r
24         public static final String PLUGIN_ID = "org.simantics.threadlog";\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.core.runtime.Plugins#start(org.osgi.framework.BundleContext)\r
38          */\r
39         public void start(BundleContext context) throws Exception {\r
40                 super.start(context);\r
41                 plugin = this;\r
42                 \r
43                 ThreadLogController.start();\r
44         }\r
45 \r
46         /*\r
47          * (non-Javadoc)\r
48          * @see org.eclipse.core.runtime.Plugin#stop(org.osgi.framework.BundleContext)\r
49          */\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