X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=org.eclipse.linuxtools.lttng2.core%2Fsrc%2Forg%2Feclipse%2Flinuxtools%2Finternal%2Flttng2%2Fcore%2Fcontrol%2Fmodel%2FITraceInfo.java;h=a49d3c58e5dc038ca0294a8e5bb6443276a2e997;hb=a6e6f7b4c37dc5adce8b2deeaf1d360b1284ad46;hp=b8d677d36ea223ecd1fcb1550f0b9c17bbf534cb;hpb=dbd4432dd9f427af47e9755cbf67b18e2e47b001;p=deliverable%2Ftracecompass.git diff --git a/org.eclipse.linuxtools.lttng2.core/src/org/eclipse/linuxtools/internal/lttng2/core/control/model/ITraceInfo.java b/org.eclipse.linuxtools.lttng2.core/src/org/eclipse/linuxtools/internal/lttng2/core/control/model/ITraceInfo.java index b8d677d36e..a49d3c58e5 100644 --- a/org.eclipse.linuxtools.lttng2.core/src/org/eclipse/linuxtools/internal/lttng2/core/control/model/ITraceInfo.java +++ b/org.eclipse.linuxtools.lttng2.core/src/org/eclipse/linuxtools/internal/lttng2/core/control/model/ITraceInfo.java @@ -1,12 +1,12 @@ /********************************************************************** - * Copyright (c) 2012 Ericsson - * + * Copyright (c) 2013 Ericsson + * * All rights reserved. This program and the accompanying materials are * made available under the terms of the Eclipse Public License v1.0 which * accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html - * - * Contributors: + * + * Contributors: * Bernd Hufmann - Initial API and implementation **********************************************************************/ package org.eclipse.linuxtools.internal.lttng2.core.control.model; @@ -15,19 +15,21 @@ package org.eclipse.linuxtools.internal.lttng2.core.control.model; *

* Interface for retrieve trace comon information. *

- * + * * @author Bernd Hufmann */ public interface ITraceInfo { /** * @return the name of the information element. */ - public String getName(); - + String getName(); + /** * Sets the name of the information element. + * * @param name + * The name to assign */ - public void setName(String name); - + void setName(String name); + }