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 / IDomainInfo.java
1 /**********************************************************************
2 * Copyright (c) 2012, 2013 Ericsson
3 *
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
8 *
9 * Contributors:
10 * Bernd Hufmann - Initial API and implementation
11 **********************************************************************/
12 package org.eclipse.linuxtools.internal.lttng2.core.control.model;
13
14 import java.util.List;
15
16 /**
17 * <p>
18 * Interface for retrieval of trace domain information.
19 * </p>
20 *
21 * @author Bernd Hufmann
22 */
23 public interface IDomainInfo extends ITraceInfo {
24
25 /**
26 * @return information about all channels
27 */
28 IChannelInfo[] getChannels();
29
30 /**
31 * Sets the channel information specified by given list.
32 * @param channels - all channel information to set.
33 */
34 void setChannels(List<IChannelInfo> channels);
35
36 /**
37 * Adds a single channel information.
38 * @param channel - channel information to add.
39 */
40 void addChannel(IChannelInfo channel);
41
42 /**
43 * @return true if domain is kernel, false for UST
44 */
45 boolean isKernel();
46
47 /**
48 * Sets whether domain is Kernel domain or UST
49 * @param isKernel true for kernel, false for UST
50 */
51 void setIsKernel(boolean isKernel);
52
53
54 }
This page took 0.032507 seconds and 5 git commands to generate.