lttng: fix sonar warnings about redundant modifier in interfaces
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.core / src / org / eclipse / linuxtools / internal / lttng2 / core / control / model / ITraceInfo.java
CommitLineData
eb1bab5b 1/**********************************************************************
a6e6f7b4 2 * Copyright (c) 2013 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 **********************************************************************/
9315aeee 12package org.eclipse.linuxtools.internal.lttng2.core.control.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.035002 seconds and 5 git commands to generate.