tmf: Add plugins for custom charts
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.chart.core.tests / src / org / eclipse / tracecompass / internal / tmf / chart / core / tests / Activator.java
1 /*******************************************************************************
2 * Copyright (c) 2016 École Polytechnique de Montréal
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made 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 package org.eclipse.tracecompass.internal.tmf.chart.core.tests;
10
11 import org.eclipse.jdt.annotation.NonNull;
12 import org.eclipse.tracecompass.common.core.TraceCompassActivator;
13
14 /**
15 * The activator class controls the plug-in life cycle
16 *
17 * @author Gabriel-Andrew Pollo-Guilbert
18 */
19 public class Activator extends TraceCompassActivator {
20
21 private static final @NonNull String PLUGIN_ID = "org.eclipse.tracecompass.tmf.chart.core.tests"; //$NON-NLS-1$
22
23 /**
24 * Return the singleton instance of this activator.
25 *
26 * @return The singleton instance
27 */
28 public static Activator instance() {
29 return (Activator) TraceCompassActivator.getInstance(PLUGIN_ID);
30 }
31
32 /**
33 * Constructor
34 */
35 public Activator() {
36 super(PLUGIN_ID);
37 }
38
39 @Override
40 protected void startActions() {
41 }
42
43 @Override
44 protected void stopActions() {
45 }
46
47 }
This page took 0.038981 seconds and 5 git commands to generate.