/********************************************************************** * Copyright (c) 2015 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 **********************************************************************/ package org.eclipse.tracecompass.internal.lttng2.control.ui.views.dialogs; /** * Interface for a dialog box for collecting parameter for saving a session. * * @author Bernd Hufmann */ public interface ISaveDialog { // ------------------------------------------------------------------------ // Accessors // ------------------------------------------------------------------------ /** * Returns flag to overwrite existing session or not * @return flag to overwrite existing session or not */ boolean isForce(); // ------------------------------------------------------------------------ // Operations // ------------------------------------------------------------------------ /** * Open method * @return the open return value */ int open(); }