gdbtrace: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / org.eclipse.tracecompass.common.core / src / org / eclipse / tracecompass / internal / common / core / Activator.java
1 /*******************************************************************************
2 * Copyright (c) 2014 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * 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.common.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.common.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.031491 seconds and 5 git commands to generate.