Copyright header update, 2015 edition
[deliverable/tracecompass.git] / org.eclipse.tracecompass.lttng2.control.core / src / org / eclipse / tracecompass / internal / lttng2 / control / core / model / ITraceInfo.java
CommitLineData
eb1bab5b 1/**********************************************************************
ed902a2b 2 * Copyright (c) 2013, 2014 Ericsson
b0318660 3 *
eb1bab5b
BH
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
b0318660
AM
8 *
9 * Contributors:
eb1bab5b
BH
10 * Bernd Hufmann - Initial API and implementation
11 **********************************************************************/
9bc60be7 12package org.eclipse.tracecompass.internal.lttng2.control.core.model;
eb1bab5b
BH
13
14/**
eb1bab5b
BH
15 * <p>
16 * Interface for retrieve trace comon information.
17 * </p>
b0318660 18 *
dbd4432d 19 * @author Bernd Hufmann
eb1bab5b 20 */
eb1bab5b
BH
21public interface ITraceInfo {
22 /**
23 * @return the name of the information element.
24 */
a6e6f7b4 25 String getName();
b0318660 26
eb1bab5b
BH
27 /**
28 * Sets the name of the information element.
b0318660 29 *
eb1bab5b 30 * @param name
b0318660 31 * The name to assign
eb1bab5b 32 */
a6e6f7b4 33 void setName(String name);
b0318660 34
eb1bab5b 35}
This page took 0.054772 seconds and 5 git commands to generate.