Merge branch 'master' into lttng_2_0_control_dev
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.ui / src / org / eclipse / linuxtools / internal / lttng2 / ui / views / control / dialogs / ICreateChannelOnSessionDialog.java
CommitLineData
bbb3538a
BH
1/**********************************************************************
2 * Copyright (c) 2012 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 **********************************************************************/
115b4a01 12package org.eclipse.linuxtools.internal.lttng2.ui.views.control.dialogs;
bbb3538a
BH
13
14
15/**
16 * <b><u>ICreateChannelOnSessionDialog</u></b>
17 * <p>
18 * Interface for the create channel dialog when domain is known, i.e. dialog
19 * was opened on session level.
20 * </p>
21 */
22public interface ICreateChannelOnSessionDialog extends ICreateChannelDialog {
23
24 // ------------------------------------------------------------------------
25 // Accessors
26 // ------------------------------------------------------------------------
27 /**
28 * @return true for Kernel domain. False for UST.
29 */
30 public boolean isKernel();
31
32}
This page took 0.025259 seconds and 5 git commands to generate.