tmf.ui: Introduce TmfFileDialogFactory
[deliverable/tracecompass.git] / lttng / org.eclipse.tracecompass.lttng2.control.ui / src / org / eclipse / tracecompass / internal / lttng2 / control / ui / views / dialogs / INewConnectionDialog.java
1 /**********************************************************************
2 * Copyright (c) 2012, 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 * Markus Schorn - Bug 448058: Use org.eclipse.remote in favor of RSE
12 **********************************************************************/
13 package org.eclipse.tracecompass.internal.lttng2.control.ui.views.dialogs;
14
15 import org.eclipse.remote.core.IRemoteConnection;
16
17 /**
18 * <p>
19 * Interface for connection information dialog.
20 * </p>
21 *
22 * @author Bernd Hufmann
23 */
24 public interface INewConnectionDialog {
25
26 // ------------------------------------------------------------------------
27 // Accessors
28 // ------------------------------------------------------------------------
29
30 /**
31 * Returns the selected connection.
32 * @return the selected connection, or <code>null</code>.
33 */
34 IRemoteConnection getConnection();
35
36 // ------------------------------------------------------------------------
37 // Operations
38 // ------------------------------------------------------------------------
39 /**
40 * @return returns the open return value
41 */
42 int open();
43 }
This page took 0.033917 seconds and 5 git commands to generate.