Bug 483621: Move segment store statistics into timing analysis plug-ins
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.timing.core / src / org / eclipse / tracecompass / internal / analysis / timing / core / Activator.java
1 /*******************************************************************************
2 * Copyright (c) 2015 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials are made
5 * available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Bernd Hufmann - Initial implementation and API
11 *******************************************************************************/
12
13 package org.eclipse.tracecompass.internal.analysis.timing.core;
14
15 import org.eclipse.tracecompass.common.core.TraceCompassActivator;
16
17 /**
18 * The activator class controls the plug-in life cycle
19 */
20 public class Activator extends TraceCompassActivator {
21
22 /** The plug-in ID */
23 public static final String PLUGIN_ID = "org.eclipse.tracecompass.analysis.timing.core"; //$NON-NLS-1$
24
25 /**
26 * The constructor
27 */
28 public Activator() {
29 super(PLUGIN_ID);
30 }
31
32 /**
33 * Returns the instance of this plug-in
34 *
35 * @return The plugin instance
36 */
37 public static TraceCompassActivator getInstance() {
38 return TraceCompassActivator.getInstance(PLUGIN_ID);
39 }
40
41 @Override
42 protected void startActions() {
43 }
44
45 @Override
46 protected void stopActions() {
47 }
48
49 }
This page took 0.031303 seconds and 5 git commands to generate.