blob: 5b80db6432f574f521665dcb432621b6af5c08df [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 EfficiOS Inc. and others
*
* 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
*
* Contributors:
* Alexandre Montplaisir - Initial API and implementation
*******************************************************************************/
package org.eclipse.tracecompass.internal.segmentstore.core;
import org.eclipse.tracecompass.common.core.TraceCompassActivator;
/**
* Plugin activator
*/
public class Activator extends TraceCompassActivator {
private static final String PLUGIN_ID = "org.eclipse.tracecompass.segmentstore.core"; //$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() {
// Do nothing
}
@Override
protected void stopActions() {
// Do nothing
}
}