tmf: Use tabs in statistics view for each traces
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / viewers / statistics / ITmfExtraEventInfo.java
1 /*******************************************************************************
2 * Copyright (c) 2011, 2012 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 * Mathieu Denis <mathieu.denis@polymtl.ca> - Initial design and implementation
11 * Bernd Hufmann - Changed interface and class name
12 *******************************************************************************/
13
14 package org.eclipse.linuxtools.tmf.ui.viewers.statistics;
15
16 /**
17 * This interface provides an extension for updating the data model and to pass
18 * along more information beside events.
19 *
20 * @version 2.0
21 * @author Mathieu Denis
22 * @since 2.0
23 */
24 public interface ITmfExtraEventInfo {
25
26 /**
27 * Returns the name of the trace.
28 *
29 * @return the name of the trace.
30 */
31 public String getTraceName();
32 }
This page took 0.031241 seconds and 5 git commands to generate.