blob: f52be4136603a3ea0b4028c0a8c07a65d9a07d85 [file] [log] [blame]
/**********************************************************************
* 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 2.0 which
* accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Bernd Hufmann - Initial API and implementation
* Bernd Hufmann - Updated for support of LTTng Tools 2.1
**********************************************************************/
package org.eclipse.tracecompass.internal.lttng2.control.ui.views.dialogs;
import org.eclipse.tracecompass.internal.lttng2.control.core.model.ISessionInfo;
import org.eclipse.tracecompass.internal.lttng2.control.ui.views.model.impl.TraceSessionGroup;
/**
* <p>
* Interface for create session dialog.
* </p>
*
* @author Bernd Hufmann
*/
public interface ICreateSessionDialog {
// ------------------------------------------------------------------------
// Accessors
// ------------------------------------------------------------------------
/**
* Get the parameters necessary for the creation of a LTTng session
*
* @return the parameters
*/
ISessionInfo getParameters();
// ------------------------------------------------------------------------
// Operations
// ------------------------------------------------------------------------
/**
* Initializes the dialog box.
* @param group - the session group
*/
void initialize(TraceSessionGroup group);
/**
* @return the open return value
*/
int open();
}