Merge branch 'master' into lttng_2_0_control_dev
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng.ui / src / org / eclipse / linuxtools / lttng / ui / views / control / dialogs / ICreateChannelDialog.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 **********************************************************************/
12package org.eclipse.linuxtools.lttng.ui.views.control.dialogs;
13
14import org.eclipse.linuxtools.lttng.ui.views.control.model.IChannelInfo;
15
16/**
17 * <b><u>ICreateChannelDialog</u></b>
18 * <p>
19 * Interface for the create channel dialog when domain is known.
20 * </p>
21 */
22public interface ICreateChannelDialog {
23
24 // ------------------------------------------------------------------------
25 // Accessors
26 // ------------------------------------------------------------------------
27 /**
28 * @return the configuration info for the new channel.
29 */
30 public IChannelInfo getChannelInfo();
31
32 // ------------------------------------------------------------------------
33 // Operations
34 // ------------------------------------------------------------------------
35 /**
36 * @return the open return value
37 */
38 int open();
39}
This page took 0.040589 seconds and 5 git commands to generate.