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 257dcc684f056b0786c8c5fef34c5a463c571f4f..4d6ec364fbd1f74f8ca8f547e5b2e07f80cde315 100644 (file)
@@ -1,11 +1,11 @@
 /*******************************************************************************
- * 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
  * accompanies this distribution, and is available at
  * http://www.eclipse.org/legal/epl-v10.html
- * 
+ *
  * Contributors:
  *   Francois Chouinard - Initial API and implementation
  *******************************************************************************/
@@ -13,7 +13,7 @@
 package org.eclipse.linuxtools.tmf.core.tests;
 
 import org.eclipse.core.runtime.Plugin;
-import org.eclipse.linuxtools.internal.tmf.core.Tracer;
+import org.eclipse.linuxtools.internal.tmf.core.TmfCoreTracer;
 import org.osgi.framework.BundleContext;
 
 /**
@@ -21,33 +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
-       public static final String PLUGIN_ID = "org.eclipse.linuxtools.tmf.tests";
+    // 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
@@ -56,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);
-               Tracer.init();
-       }
+    @Override
+    public void start(BundleContext context) throws Exception {
+        super.start(context);
+        setDefault(this);
+        TmfCoreTracer.init();
+    }
 
-       @Override
-       public void stop(BundleContext context) throws Exception {
-               Tracer.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.027088 seconds and 5 git commands to generate.