blob: 53436a176f620da10910f47cf8a722398d3c9642 [file] [log] [blame]
/**
* Copyright (c) 2012, 2019 Mia-Software and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Alban Ménager (Soft-Maint) - Bug 387470 - [EFacet][Custom] Editors
* Grégoire Dupé (Mia-Software) - Bug 387470 - [EFacet][Custom] Editors
*/
package org.eclipse.modisco.facet.util.ui.internal.exported.dialog;
import org.eclipse.modisco.facet.util.ui.internal.exported.util.dialog.AbstractDialog;
/**
* @see AbstractDialog
* @since 0.3
* @noextend This interface is not intended to be extended by clients.
* @noimplement This interface is not intended to be implemented by clients.
*/
public interface IDialog<W extends Object> {
/**
* Press the "Ok" button.
*/
void commit();
/**
* Press the "Cancel" button.
*/
void cancel();
/**
* Open the dialog. This method is used for to open the dialog into the
* thread UI. So, this method has no to be called into the constructor.
*
* @return the result of the dialog (OK or CANCEL).
*/
int open();
/**
* Return if the dialog is valid or not.
*
* @return true if all the necessaries properties are set.
*/
boolean isDialogValid();
W getWidget();
}