Example usage for org.eclipse.jface.dialogs MessageDialog subclass-usage

List of usage examples for org.eclipse.jface.dialogs MessageDialog subclass-usage

Introduction

In this page you can find the example usage for org.eclipse.jface.dialogs MessageDialog subclass-usage.

Usage

From source file org.eclipse.buckminster.ui.internal.CertificateTrustInquiryUIDialog.java

/**
 * @author kolwing
 * 
 */
public class CertificateTrustInquiryUIDialog extends MessageDialog {
    public static boolean promptUser(Shell shell, String title, String message, CertPath certPath) {

From source file org.eclipse.cdt.cpp.ui.internal.dialogs.CustomMessageDialog.java

/**
 *
 */
public class CustomMessageDialog extends MessageDialog {

    private final int DEFAULT_BUTTON_TYPE = 1 << 5; // SWT.CHECK

From source file org.eclipse.cdt.cpp.ui.internal.dialogs.PreventableMessageBox.java

public class PreventableMessageBox extends MessageDialog implements SelectionListener

{
    static private boolean _showAgain = true;

    private Button _preventButton;

From source file org.eclipse.cdt.internal.autotools.ui.OptionalMessageDialog.java

/**
 * This is a <code>MessageDialog</code> which allows the user
 * to choose that the dialog isn't shown again the next time.
 */
public class OptionalMessageDialog extends MessageDialog {
    // String constants for widgets

From source file org.eclipse.cdt.internal.ui.dialogs.OptionalMessageDialog.java

/**
 * This is a <code>MessageDialog</code> which allows the user
 * to choose that the dialog isn't shown again the next time.
 */
public class OptionalMessageDialog extends MessageDialog {
    // Dialog store id constants

From source file org.eclipse.cdt.managedbuilder.internal.ui.actions.CleanAndBuildDialog.java

/**
 * Dialog to let the user to clean and rebuild configurations of the selected projects.
 */
public class CleanAndBuildDialog extends MessageDialog {
    private static final String DIALOG_SETTINGS_SECTION = "RebuildConfigurationsDialogSettings"; //$NON-NLS-1$
    private static final String DIALOG_ORIGIN_X = "DIALOG_X_ORIGIN"; //$NON-NLS-1$

From source file org.eclipse.cdt.managedbuilder.internal.ui.commands.RebuildConfigurationsDialog.java

/**
 * Dialog to let the user to clean and rebuild configurations of the selected projects.
 */
public class RebuildConfigurationsDialog extends MessageDialog {
    private static final String DIALOG_SETTINGS_SECTION = "RebuildConfigurationsDialogSettings"; //$NON-NLS-1$
    private static final String DIALOG_ORIGIN_X = "DIALOG_X_ORIGIN"; //$NON-NLS-1$

From source file org.eclipse.cft.server.ui.internal.UpdatePasswordDialog.java

/**
 * @author Terry Denney
 */
public class UpdatePasswordDialog extends MessageDialog {

    private String password;

From source file org.eclipse.datatools.sqltools.sqlbuilder.dialogs.SQLBuilderRevertActionDialog.java

public class SQLBuilderRevertActionDialog extends MessageDialog {

    private String goodSource = "";

    public SQLBuilderRevertActionDialog(Shell shell, String title, Image image, String message, int imageType,
            String[] buttonLabels, int defaultIndex) {

From source file org.eclipse.debug.internal.ui.actions.breakpoints.DeleteWorkingsetsMessageDialog.java

/**
 * Allows the user to specify if they want to delete the working set, all the breakpoints in the working
 * set or both
 * @since 3.2
 */
public class DeleteWorkingsetsMessageDialog extends MessageDialog {