gdbtrace: Move plugins to the Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.control.core / src / org / eclipse / linuxtools / internal / lttng2 / control / core / model / ITraceInfo.java
1 /**********************************************************************
2 * Copyright (c) 2013 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 * Bernd Hufmann - Initial API and implementation
11 **********************************************************************/
12 package org.eclipse.linuxtools.internal.lttng2.control.core.model;
13
14 /**
15 * <p>
16 * Interface for retrieve trace comon information.
17 * </p>
18 *
19 * @author Bernd Hufmann
20 */
21 public interface ITraceInfo {
22 /**
23 * @return the name of the information element.
24 */
25 String getName();
26
27 /**
28 * Sets the name of the information element.
29 *
30 * @param name
31 * The name to assign
32 */
33 void setName(String name);
34
35 }
This page took 0.034965 seconds and 5 git commands to generate.