ss: Move plugins to Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core.tests / src / org / eclipse / linuxtools / tmf / core / tests / TmfCoreTestPlugin.java
index 318d8eea87402f713c27a32cfb405b68ce37a47d..4d6ec364fbd1f74f8ca8f547e5b2e07f80cde315 100644 (file)
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2009, 2010 Ericsson
+ * Copyright (c) 2009, 2013 Ericsson
  *
  * All rights reserved. This program and the accompanying materials are
  * made available under the terms of the Eclipse Public License v1.0 which
@@ -21,34 +21,33 @@ import org.osgi.framework.BundleContext;
  * <p>
  * The activator class controls the plug-in life cycle
  */
-@SuppressWarnings({ "nls" })
 public class TmfCoreTestPlugin extends Plugin {
 
     // ------------------------------------------------------------------------
     // Attributes
     // ------------------------------------------------------------------------
 
-       // The plug-in ID
-       @SuppressWarnings("javadoc")
+    // The plug-in ID
+    @SuppressWarnings("javadoc")
     public static final String PLUGIN_ID = "org.eclipse.linuxtools.tmf.tests";
 
-       // The shared instance
-       private static TmfCoreTestPlugin fPlugin;
+    // The shared instance
+    private static TmfCoreTestPlugin fPlugin;
 
     // ------------------------------------------------------------------------
     // Constructors
     // ------------------------------------------------------------------------
 
-       /**
-        * The constructor
-        */
-       public TmfCoreTestPlugin() {
-               setDefault(this);
-       }
+    /**
+     * The constructor
+     */
+    public TmfCoreTestPlugin() {
+        setDefault(this);
+    }
 
-       // ------------------------------------------------------------------------
+    // ------------------------------------------------------------------------
     // Accessors
-       // ------------------------------------------------------------------------
+    // ------------------------------------------------------------------------
 
     /**
      * @return the shared instance
@@ -57,29 +56,29 @@ public class TmfCoreTestPlugin extends Plugin {
         return fPlugin;
     }
 
-       /**
-        * @param plugin the shared instance
-        */
-       private static void setDefault(TmfCoreTestPlugin plugin) {
-               fPlugin = plugin;
-       }
+    /**
+     * @param plugin the shared instance
+     */
+    private static void setDefault(TmfCoreTestPlugin plugin) {
+        fPlugin = plugin;
+    }
 
-       // ------------------------------------------------------------------------
+    // ------------------------------------------------------------------------
     // Operations
-       // ------------------------------------------------------------------------
+    // ------------------------------------------------------------------------
 
-       @Override
-       public void start(BundleContext context) throws Exception {
-               super.start(context);
-               setDefault(this);
-               TmfCoreTracer.init();
-       }
+    @Override
+    public void start(BundleContext context) throws Exception {
+        super.start(context);
+        setDefault(this);
+        TmfCoreTracer.init();
+    }
 
-       @Override
-       public void stop(BundleContext context) throws Exception {
-               TmfCoreTracer.stop();
-               setDefault(null);
-               super.stop(context);
-       }
+    @Override
+    public void stop(BundleContext context) throws Exception {
+        TmfCoreTracer.stop();
+        setDefault(null);
+        super.stop(context);
+    }
 
 }
This page took 0.030628 seconds and 5 git commands to generate.