blob: 2114b7a87cc5509e534c69a610c844e8b172f85c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 École Polytechnique de Montréal
*
* All rights reserved. This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0 which
* accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************/
package org.eclipse.tracecompass.internal.datastore.core;
import org.eclipse.tracecompass.common.core.TraceCompassActivator;
/**
* The activator class controls the plug-in life cycle
*
* @author Geneviève Bastien
*/
public class Activator extends TraceCompassActivator {
/** The plug-in ID */
public static final String PLUGIN_ID = "org.eclipse.tracecompass.datastore.core"; //$NON-NLS-1$
/**
* The constructor
*/
public Activator() {
super(PLUGIN_ID);
}
/**
* Returns the instance of this plug-in
*
* @return The plugin instance
*/
public static TraceCompassActivator getInstance() {
return TraceCompassActivator.getInstance(PLUGIN_ID);
}
@Override
protected void startActions() {
// Do nothing
}
@Override
protected void stopActions() {
// Do nothing
}
}