tmf: Update Javadoc throughout tmf.ui
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / 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.views.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 1.0
21 * @author Mathieu Denis
22 */
23 public interface ITmfExtraEventInfo {
24
25 /**
26 * Returns the trace name.
27 * @return the name of the trace.
28 */
29 public String getTraceName();
30 }
This page took 0.032478 seconds and 5 git commands to generate.