Move alltests plugin to the Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / editors / ITmfTraceEditor.java
CommitLineData
6151d86c 1/*******************************************************************************
deaae6e1 2 * Copyright (c) 2010, 2014 Ericsson
6151d86c
PT
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 * Patrick Tasse - Initial API and implementation
11 *******************************************************************************/
12
13package org.eclipse.linuxtools.tmf.ui.editors;
14
6151d86c
PT
15import org.eclipse.linuxtools.tmf.core.trace.ITmfTrace;
16
17/**
18 * The trace editor interface
19 *
20 * @version 1.0
21 * @author Patrick Tasse
22 */
23public interface ITmfTraceEditor {
24
25 /**
26 * Get the trace to which this editor is assigned
27 *
28 * @return The trace
29 */
57a2a5ca 30 ITmfTrace getTrace();
6151d86c 31}
This page took 0.049133 seconds and 5 git commands to generate.