analysis.lami: Introduce LAMI integration plugins
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.lami.core / src / org / eclipse / tracecompass / internal / analysis / lami / 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
10 package org.eclipse.tracecompass.internal.analysis.lami.core;
11
12 import org.eclipse.tracecompass.common.core.TraceCompassActivator;
13
14 /**
15 * Plugin activator
16 */
17 public class Activator extends TraceCompassActivator {
18
19 private static final String PLUGIN_ID = "org.eclipse.tracecompass.analysis.lami.core"; //$NON-NLS-1$
20
21 /**
22 * Return the singleton instance of this activator.
23 *
24 * @return The singleton instance
25 */
26 public static Activator instance() {
27 return (Activator) TraceCompassActivator.getInstance(PLUGIN_ID);
28 }
29
30 /**
31 * Constructor
32 */
33 public Activator() {
34 super(PLUGIN_ID);
35 }
36
37 @Override
38 protected void startActions() {
39 }
40
41 @Override
42 protected void stopActions() {
43 }
44
45 }
This page took 0.033707 seconds and 5 git commands to generate.