blob: f6e5ec3305492977aa7955f44deb50aa5c779e37 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2018 Ericsson
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License v1.0 which
* accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*******************************************************************************/
package org.eclipse.tracecompass.incubator.internal.opentracing.core;
import org.eclipse.tracecompass.common.core.TraceCompassActivator;
/**
* Activator
*/
public class Activator extends TraceCompassActivator {
/** The plug-in ID */
public static final String PLUGIN_ID = "org.eclipse.tracecompass.incubator.opentracing.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() {
}
@Override
protected void stopActions() {
}
}