gdbtrace: Move plugins to the Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.control.ui / src / org / eclipse / linuxtools / internal / lttng2 / control / ui / views / dialogs / ISelectCommandScriptDialog.java
CommitLineData
64a37b87
BH
1/**********************************************************************
2 * Copyright (c) 2014 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.internal.lttng2.control.ui.views.dialogs;
13
14import java.util.List;
15
16/**
17 * Interface for dialog for selecting a command script.
18 *
19 * @author Bernd Hufmann
20 *
21 */
22public interface ISelectCommandScriptDialog {
23 /**
24 * @return a list of command
25 */
26 List<String> getCommands();
27
28 /**
29 * @return the open return value
30 */
31 int open();
32}
This page took 0.028858 seconds and 5 git commands to generate.