X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=org.eclipse.linuxtools.lttng2.core%2Fsrc%2Forg%2Feclipse%2Flinuxtools%2Finternal%2Flttng2%2Fcore%2Fcontrol%2Fmodel%2FIDomainInfo.java;h=edb9de0aaf6869f7ba81217a8ebdf5843b41598f;hb=a6e6f7b4c37dc5adce8b2deeaf1d360b1284ad46;hp=02022c6b2323d4bb77b4496686177b2e9c2d4147;hpb=22307af393885de761f4a2e2ee51a00123c75a84;p=deliverable%2Ftracecompass.git diff --git a/org.eclipse.linuxtools.lttng2.core/src/org/eclipse/linuxtools/internal/lttng2/core/control/model/IDomainInfo.java b/org.eclipse.linuxtools.lttng2.core/src/org/eclipse/linuxtools/internal/lttng2/core/control/model/IDomainInfo.java index 02022c6b23..edb9de0aaf 100644 --- a/org.eclipse.linuxtools.lttng2.core/src/org/eclipse/linuxtools/internal/lttng2/core/control/model/IDomainInfo.java +++ b/org.eclipse.linuxtools.lttng2.core/src/org/eclipse/linuxtools/internal/lttng2/core/control/model/IDomainInfo.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,38 +17,38 @@ import java.util.List; *

* Interface for retrieval of trace domain information. *

- * + * * @author Bernd Hufmann */ public interface IDomainInfo extends ITraceInfo { - + /** - * @return information about all channels + * @return information about all channels */ - public IChannelInfo[] getChannels(); - + IChannelInfo[] getChannels(); + /** * Sets the channel information specified by given list. * @param channels - all channel information to set. */ - public void setChannels(List channels); - + void setChannels(List channels); + /** * Adds a single channel information. * @param channel - channel information to add. */ - public void addChannel(IChannelInfo channel); - + void addChannel(IChannelInfo channel); + /** * @return true if domain is kernel, false for UST */ - public boolean isKernel(); - + boolean isKernel(); + /** - * Sets whether domain is Kernel domain or UST + * Sets whether domain is Kernel domain or UST * @param isKernel true for kernel, false for UST */ - public void setIsKernel(boolean isKernel); + void setIsKernel(boolean isKernel); }