blob: 89b713ec1490532b497620b79cb37018e65f924d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 EfficiOS Inc., Alexandre Montplaisir
*
* 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.analysis.lami.core.tests;
import org.eclipse.jdt.annotation.NonNull;
import org.eclipse.tracecompass.common.core.TraceCompassActivator;
/**
* Plugin activator
*/
public class Activator extends TraceCompassActivator {
private static final @NonNull String PLUGIN_ID = "org.eclipse.tracecompass.analysis.lami.core.tests"; //$NON-NLS-1$
/**
* Return the singleton instance of this activator.
*
* @return The singleton instance
*/
public static Activator instance() {
return (Activator) TraceCompassActivator.getInstance(PLUGIN_ID);
}
/**
* Constructor
*/
public Activator() {
super(PLUGIN_ID);
}
@Override
protected void startActions() {
}
@Override
protected void stopActions() {
}
}