Add support for importing traces to tracing project
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.ui / src / org / eclipse / linuxtools / internal / lttng2 / ui / views / control / dialogs / IConfirmDialog.java
CommitLineData
d132bcc7
BH
1/**********************************************************************
2 * Copyright (c) 2012 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 **********************************************************************/
115b4a01 12package org.eclipse.linuxtools.internal.lttng2.ui.views.control.dialogs;
d132bcc7
BH
13
14import org.eclipse.swt.widgets.Shell;
15
16/**
17 * <b><u>IConfirmDialog</u></b>
18 * <p>
19 * Interface for a confirmation dialog.
20 * </p>
21 */
22public interface IConfirmDialog {
23
24 public boolean openConfirm(Shell parent, String title, String message);
25
26}
This page took 0.025885 seconds and 5 git commands to generate.