5a52a131b4c5ee4ac8def77ad12a76c8c9de4cdf
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ctf.core.tests / stubs / org / eclipse / linuxtools / tmf / ctf / core / tests / stubs / CtfTmfTraceStub.java
1 /*******************************************************************************
2 * Copyright (c) 2013 École Polytechnique de Montréal
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 * Geneviève Bastien - Initial API and implementation
11 *******************************************************************************/
12
13 package org.eclipse.linuxtools.tmf.ctf.core.tests.stubs;
14
15 import org.eclipse.linuxtools.tmf.core.signal.TmfSignalManager;
16 import org.eclipse.linuxtools.tmf.core.signal.TmfTraceOpenedSignal;
17 import org.eclipse.linuxtools.tmf.core.signal.TmfTraceSelectedSignal;
18 import org.eclipse.linuxtools.tmf.ctf.core.CtfTmfTrace;
19
20 /**
21 * Dummy test ctf trace
22 */
23 public class CtfTmfTraceStub extends CtfTmfTrace {
24
25 /**
26 * Simulate trace opening, to be called by tests who need an actively opened
27 * trace
28 */
29 public void openTrace() {
30 TmfSignalManager.dispatchSignal(new TmfTraceOpenedSignal(this, this, null));
31 selectTrace();
32 }
33
34 /**
35 * Simulate selecting the trace
36 */
37 public void selectTrace() {
38 TmfSignalManager.dispatchSignal(new TmfTraceSelectedSignal(this, this));
39 }
40
41 }
This page took 0.031425 seconds and 4 git commands to generate.