X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=org.eclipse.linuxtools.lttng2.core%2Fsrc%2Forg%2Feclipse%2Flinuxtools%2Finternal%2Flttng2%2Fcore%2Fcontrol%2Fmodel%2FIUstProviderInfo.java;h=403a8572bf5b1a388b4579a9a338ec4b2f8ba087;hb=152ba1a7fabe7175ba1a6f267eda2b3891cbcb63;hp=1c5c86d897fb655232751de03445610a21a3eff4;hpb=dbd4432dd9f427af47e9755cbf67b18e2e47b001;p=deliverable%2Ftracecompass.git diff --git a/org.eclipse.linuxtools.lttng2.core/src/org/eclipse/linuxtools/internal/lttng2/core/control/model/IUstProviderInfo.java b/org.eclipse.linuxtools.lttng2.core/src/org/eclipse/linuxtools/internal/lttng2/core/control/model/IUstProviderInfo.java index 1c5c86d897..403a8572bf 100644 --- a/org.eclipse.linuxtools.lttng2.core/src/org/eclipse/linuxtools/internal/lttng2/core/control/model/IUstProviderInfo.java +++ b/org.eclipse.linuxtools.lttng2.core/src/org/eclipse/linuxtools/internal/lttng2/core/control/model/IUstProviderInfo.java @@ -1,12 +1,12 @@ /********************************************************************** - * Copyright (c) 2012 Ericsson - * + * Copyright (c) 2012, 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; @@ -17,36 +17,36 @@ import java.util.List; *

* Interface for retrieval of UST provider information. *

- * + * * @author Bernd Hufmann */ public interface IUstProviderInfo extends ITraceInfo { - + /** * @return the process ID of the UST provider. */ - public int getPid(); + int getPid(); /** * Sets the process ID of the UST provider to the given value. * @param pid - process ID to set */ - public void setPid(int pid); - + void setPid(int pid); + /** * @return all event information as array. */ - public IBaseEventInfo[] getEvents(); - + IBaseEventInfo[] getEvents(); + /** * Sets the event information specified by given list. * @param events - all event information to set. */ - public void setEvents(List events); - + void setEvents(List events); + /** * Adds a single event information. * @param event - event information to add. */ - public void addEvent(IBaseEventInfo event); + void addEvent(IBaseEventInfo event); }