/********************************************************************** * Copyright (c) 2012, 2014 Ericsson * * All rights reserved. This program and the accompanying materials are * made available under the terms of the Eclipse Public License v1.0 which * accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Bernd Hufmann - Initial API and implementation * Markus Schorn - Bug 448058: Use org.eclipse.remote in favor of RSE **********************************************************************/ package org.eclipse.tracecompass.internal.lttng2.control.ui.views.dialogs; import org.eclipse.remote.core.IRemoteConnection; /** * <p> * Interface for connection information dialog. * </p> * * @author Bernd Hufmann */ public interface INewConnectionDialog { // ------------------------------------------------------------------------ // Accessors // ------------------------------------------------------------------------ /** * Returns the selected connection. * @return the selected connection, or <code>null</code>. */ IRemoteConnection getConnection(); // ------------------------------------------------------------------------ // Operations // ------------------------------------------------------------------------ /** * @return returns the open return value */ int open(); }