datastore: Add generic history tree
[deliverable/tracecompass.git] / statesystem / org.eclipse.tracecompass.datastore.core / src / org / eclipse / tracecompass / internal / datastore / core / Activator.java
CommitLineData
f03544cb
GB
1/*******************************************************************************
2 * Copyright (c) 2016 École Polytechnique de Montréal
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
10package org.eclipse.tracecompass.internal.datastore.core;
11
12import org.eclipse.tracecompass.common.core.TraceCompassActivator;
13
14/**
15 * The activator class controls the plug-in life cycle
5e7913a4
GB
16 *
17 * @author Geneviève Bastien
f03544cb
GB
18 */
19public class Activator extends TraceCompassActivator {
20
21 /** The plug-in ID */
5e7913a4 22 public static final String PLUGIN_ID = "org.eclipse.tracecompass.datastore.core"; //$NON-NLS-1$
f03544cb
GB
23
24 /**
25 * The constructor
26 */
27 public Activator() {
28 super(PLUGIN_ID);
29 }
30
31 /**
32 * Returns the instance of this plug-in
33 *
34 * @return The plugin instance
35 */
36 public static TraceCompassActivator getInstance() {
37 return TraceCompassActivator.getInstance(PLUGIN_ID);
38 }
39
40 @Override
41 protected void startActions() {
42 }
43
44 @Override
45 protected void stopActions() {
46 }
47
48}
This page took 0.025075 seconds and 5 git commands to generate.