ss: Introduce SegmentStore plugin
[deliverable/tracecompass.git] / statesystem / org.eclipse.tracecompass.segmentstore.core / src / org / eclipse / tracecompass / internal / segmentstore / core / Activator.java
1 /*******************************************************************************
2 * Copyright (c) 2015 EfficiOS Inc. and others
3 *
4 * All rights reserved. This program and the accompanying materials
5 * are made available under the terms of the Eclipse Public License v1.0
6 * which accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Alexandre Montplaisir - Initial API and implementation
11 *******************************************************************************/
12
13 package org.eclipse.tracecompass.internal.segmentstore.core;
14
15 import org.eclipse.tracecompass.common.core.TraceCompassActivator;
16
17 /**
18 * Plugin activator
19 */
20 public class Activator extends TraceCompassActivator {
21
22 private static final String PLUGIN_ID = "org.eclipse.tracecompass.segmentstore.core"; //$NON-NLS-1$
23
24 /**
25 * Return the singleton instance of this activator.
26 *
27 * @return The singleton instance
28 */
29 public static Activator instance() {
30 return (Activator) TraceCompassActivator.getInstance(PLUGIN_ID);
31 }
32
33 /**
34 * Constructor
35 */
36 public Activator() {
37 super(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.049522 seconds and 5 git commands to generate.