5a2be187e11e58b7c43335e0d865792bfef9210f
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng.ui / src / org / eclipse / linuxtools / internal / lttng / ui / views / control / dialogs / ConfirmDialog.java
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 **********************************************************************/
12
13 package org.eclipse.linuxtools.internal.lttng.ui.views.control.dialogs;
14
15
16 import org.eclipse.jface.dialogs.MessageDialog;
17 import org.eclipse.linuxtools.internal.lttng.ui.views.control.Messages;
18 import org.eclipse.swt.widgets.Shell;
19
20 /**
21 * <b><u>ConfirmDialog</u></b>
22 * <p>
23 * Confirmation dialog implementation.
24 * </p>
25 */
26
27 public class ConfirmDialog implements IConfirmDialog {
28
29 /*
30 * (non-Javadoc)
31 * @see org.eclipse.linuxtools.internal.lttng.ui.views.control.dialogs.IConfirmDialog#openConfirm(org.eclipse.swt.widgets.Shell, java.lang.String, java.lang.String)
32 */
33 @Override
34 public boolean openConfirm(Shell parent, String title, String message) {
35 return MessageDialog.openConfirm(parent,
36 Messages.TraceControl_DestroyConfirmationTitle,
37 Messages.TraceControl_DestroyConfirmationMessage);
38 }
39 }
This page took 0.032473 seconds and 4 git commands to generate.