performed javacscript:fix and worked on documentation
[taxeditor.git] / taxeditor-bulkeditor / src / main / java / eu / etaxonomy / taxeditor / bulkeditor / internal / TaxeditorBulkeditorPlugin.java
index 2c04ff8c5e5079e0a31d318d79da41066e53c142..7aa8b0b5275d30ba4c1a24eda5908639a587a9b9 100644 (file)
@@ -1,50 +1,56 @@
-package eu.etaxonomy.taxeditor.bulkeditor.internal;\r
-\r
-import org.eclipse.ui.plugin.AbstractUIPlugin;\r
-import org.osgi.framework.BundleContext;\r
-\r
-/**\r
- * The activator class controls the plug-in life cycle\r
- */\r
-public class TaxeditorBulkeditorPlugin extends AbstractUIPlugin {\r
-\r
-       // The plug-in ID\r
-       public static final String PLUGIN_ID = "eu.etaxonomy.taxeditor.bulkeditor";\r
-\r
-       // The shared instance\r
-       private static TaxeditorBulkeditorPlugin plugin;\r
-       \r
-       /**\r
-        * The constructor\r
-        */\r
-       public TaxeditorBulkeditorPlugin() {\r
-       }\r
-\r
-       /*\r
-        * (non-Javadoc)\r
-        * @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext)\r
-        */\r
-       public void start(BundleContext context) throws Exception {\r
-               super.start(context);\r
-               plugin = this;          \r
-               \r
-       }\r
-\r
-       /*\r
-        * (non-Javadoc)\r
-        * @see org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext)\r
-        */\r
-       public void stop(BundleContext context) throws Exception {\r
-               plugin = null;\r
-               super.stop(context);\r
-       }\r
-\r
-       /**\r
-        * Returns the shared instance\r
-        *\r
-        * @return the shared instance\r
-        */\r
-       public static TaxeditorBulkeditorPlugin getDefault() {\r
-               return plugin;\r
-       }\r
-}
\ No newline at end of file
+package eu.etaxonomy.taxeditor.bulkeditor.internal;
+
+import org.eclipse.ui.plugin.AbstractUIPlugin;
+import org.osgi.framework.BundleContext;
+
+/**
+ * The activator class controls the plug-in life cycle
+ *
+ * @author n.hoffmann
+ * @version $Id: $
+ */
+public class TaxeditorBulkeditorPlugin extends AbstractUIPlugin {
+
+       // The plug-in ID
+       /** Constant <code>PLUGIN_ID="eu.etaxonomy.taxeditor.bulkeditor"</code> */
+       public static final String PLUGIN_ID = "eu.etaxonomy.taxeditor.bulkeditor";
+
+       // The shared instance
+       private static TaxeditorBulkeditorPlugin plugin;
+       
+       /**
+        * The constructor
+        */
+       public TaxeditorBulkeditorPlugin() {
+       }
+
+       /*
+        * (non-Javadoc)
+        * @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext)
+        */
+       /** {@inheritDoc} */
+       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)
+        */
+       /** {@inheritDoc} */
+       public void stop(BundleContext context) throws Exception {
+               plugin = null;
+               super.stop(context);
+       }
+
+       /**
+        * Returns the shared instance
+        *
+        * @return the shared instance
+        */
+       public static TaxeditorBulkeditorPlugin getDefault() {
+               return plugin;
+       }
+}