Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 05450f1b7d8698299149f49646f91086ac59d93e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/**
 * Copyright (c) 2012 Mia-Software.
 *
 * 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:
 *  	Alban Ménager (Soft-Maint) - Bug 387470 - [EFacet][Custom] Editors
 *  	Grégoire Dupé (Mia-Software) - Bug 387470 - [EFacet][Custom] Editors
 */
package org.eclipse.papyrus.emf.facet.util.ui.internal.exported.util.dialog;

import org.eclipse.papyrus.emf.facet.util.ui.internal.exported.dialog.IDialogWithoutResultCallback;
import org.eclipse.papyrus.emf.facet.util.ui.internal.exported.dialog.IWithResultDialogCallback;
import org.eclipse.papyrus.emf.facet.util.ui.internal.exported.util.widget.command.ICommandWidget;

/**
 * Abstract dialog with an {@link IDialogWithoutResultCallback} in parameter.
 *
 * @since 0.3
 */
public abstract class AbstractDialogWithCallback<T extends Object, W extends ICommandWidget>
		extends AbstractDialog<IWithResultDialogCallback<T>, W> {

	/**
	 * Constructor.
	 *
	 * @param editingDomain
	 *            the current editing domain
	 * @param properties
	 *            the properties that the widget needs
	 */
	protected AbstractDialogWithCallback(
			final IWithResultDialogCallback<T> callback) {
		super(callback);
	}

	@Override
	protected void okPressed() {
		if (isDialogValid() && (getCallback() != null)) {
			getCallback().commited(getResult());
		}
		super.okPressed();
	}

	protected abstract T getResult();

	@Override
	protected void cancelPressed() {
		if (getCallback() != null) {
			getCallback().canceled(getResult());
		}
		super.cancelPressed();
	}

}

Back to the top