6cfc86a592592caadd5b31f2e7faa48ef217fd3a
[deliverable/tracecompass.git] / org.eclipse.tracecompass.lttng2.control.ui.tests / stubs / org / eclipse / tracecompass / internal / lttng2 / control / stubs / dialogs / DestroyConfirmDialogStub.java
1 /**********************************************************************
2 * Copyright (c) 2012, 2014 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 package org.eclipse.tracecompass.internal.lttng2.control.stubs.dialogs;
13
14 import org.eclipse.swt.widgets.Shell;
15 import org.eclipse.tracecompass.internal.lttng2.control.ui.views.dialogs.IConfirmDialog;
16
17 /**
18 * A confirmation dialog stub implementation.
19 */
20 public class DestroyConfirmDialogStub implements IConfirmDialog {
21
22 @Override
23 public boolean openConfirm(Shell parent, String title, String message) {
24 return true;
25 }
26 }
This page took 0.032533 seconds and 4 git commands to generate.