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=0b20ff4558cd824ac15c6908b640fdad45acbbd2;hpb=9315aeeef150e462551af3dcd5eb20f370a6942f;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 0b20ff4558..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; @@ -14,38 +14,39 @@ package org.eclipse.linuxtools.internal.lttng2.core.control.model; import java.util.List; /** - * IUstProviderInfo *

* 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); }