summaryrefslogtreecommitdiff
path: root/de.dhbw.horb.ksm.tableeditor/src
diff options
context:
space:
mode:
authoryvesf <yvesf-git@xapek.org>2011-05-13 19:06:56 +0200
committeryvesf <yvesf-git@xapek.org>2011-05-21 11:00:42 +0200
commit83ec6cd048be645225c08265eb86b35e811dd1c9 (patch)
treeb5876b908202e57cb3dc5347d059d3fb51b932e1 /de.dhbw.horb.ksm.tableeditor/src
parentd99fac83ac0b02c2e8d1e93c18a25a3c92539726 (diff)
downloadksm-rcp-83ec6cd048be645225c08265eb86b35e811dd1c9.tar.gz
ksm-rcp-83ec6cd048be645225c08265eb86b35e811dd1c9.zip
Ende Fischer '11
Diffstat (limited to 'de.dhbw.horb.ksm.tableeditor/src')
-rw-r--r--de.dhbw.horb.ksm.tableeditor/src/de/dhbw/horb/tableeditor/Activator.java50
1 files changed, 50 insertions, 0 deletions
diff --git a/de.dhbw.horb.ksm.tableeditor/src/de/dhbw/horb/tableeditor/Activator.java b/de.dhbw.horb.ksm.tableeditor/src/de/dhbw/horb/tableeditor/Activator.java
new file mode 100644
index 0000000..dcc28d5
--- /dev/null
+++ b/de.dhbw.horb.ksm.tableeditor/src/de/dhbw/horb/tableeditor/Activator.java
@@ -0,0 +1,50 @@
+package de.dhbw.horb.tableeditor;
+
+import org.eclipse.ui.plugin.AbstractUIPlugin;
+import org.osgi.framework.BundleContext;
+
+/**
+ * The activator class controls the plug-in life cycle
+ */
+public class Activator extends AbstractUIPlugin {
+
+ // The plug-in ID
+ public static final String PLUGIN_ID = "tableeditor"; //$NON-NLS-1$
+
+ // The shared instance
+ private static Activator plugin;
+
+ /**
+ * The constructor
+ */
+ public Activator() {
+ }
+
+ /*
+ * (non-Javadoc)
+ * @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext)
+ */
+ public void start(BundleContext context) throws Exception {
+ super.start(context);
+ plugin = this;
+ }
+
+ /*
+ * (non-Javadoc)
+ * @see org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext)
+ */
+ public void stop(BundleContext context) throws Exception {
+ plugin = null;
+ super.stop(context);
+ }
+
+ /**
+ * Returns the shared instance
+ *
+ * @return the shared instance
+ */
+ public static Activator getDefault() {
+ return plugin;
+ }
+
+}