common: Add test suite for the BufferedBlockingQueue
[deliverable/tracecompass.git] / org.eclipse.tracecompass.common.core.tests / src / org / eclipse / tracecompass / common / core / tests / Activator.java
1 /*******************************************************************************
2 * Copyright (c) 2015 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 * Matthew Khouzam - Initial API and implementation
11 *******************************************************************************/
12
13 package org.eclipse.tracecompass.common.core.tests;
14
15 import org.osgi.framework.BundleActivator;
16 import org.osgi.framework.BundleContext;
17
18 /**
19 * Activator
20 */
21 public class Activator implements BundleActivator {
22
23 @Override
24 public void start(BundleContext context) throws Exception {
25 }
26
27 @Override
28 public void stop(BundleContext context) throws Exception {
29 }
30
31 }
This page took 0.033701 seconds and 5 git commands to generate.