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.php.internal.debug.ui.preferences.phps.PHPsSearchResultDialog.java

/**
 * Dialog for managing PHP executable search results.
 * 
 * @author Bartlomiej Laczkowski
 */
@SuppressWarnings("restriction")

From source file org.eclipse.php.internal.server.ui.launching.PHPWebPageURLLaunchDialog.java

/**
 * The PHPWebPageURLLaunchDialog is a dialog that will be displayed for the user
 * when a server launch shortcut is triggered. The dialog hides all the default
 * values and let the user to set the page URL that will be used to initialize
 * the debug session. This dialog appears only when the launch is a NEW lauch.
 * In cases where we already identified that there is a launch configuration on

From source file org.eclipse.php.internal.server.ui.launching.zend.DefaultServerTestMessageDialog.java

public class DefaultServerTestMessageDialog extends MessageDialog {

    @Override
    protected Control createMessageArea(Composite composite) {
        // create composite
        // create image

From source file org.eclipse.php.ui.util.LinkMessageDialog.java

/**
 * Abstract implementation of a message dialog that gives possibility to provide
 * message text with support for links.
 * 
 * @author Bartlomiej Laczkowski
 */

From source file org.eclipse.ptp.internal.rm.jaxb.control.ui.dialogs.ScrollingEditableMessageDialog.java

/**
 * Displays text contents for editing/saving. Note: the font hint used is
 * Courier, which should be available on Mac, Windows and Linux platforms. More
 * lightweight than a full-blown text editor.
 * 
 * @author arossi

From source file org.eclipse.ptp.rm.jaxb.control.ui.dialogs.ScrollingEditableMessageDialog.java

/**
 * Displays text contents for editing/saving. Note: the font hint used is
 * Courier, which should be available on Mac, Windows and Linux platforms. More
 * lightweight than a full-blown text editor.
 * 
 * @author arossi

From source file org.eclipse.qvt.declarative.editor.ui.commands.PageChangeDialog.java

public class PageChangeDialog extends MessageDialog {
    protected static final String[] buttonLabels = new String[] { "Update", "Revert", "Resume" };
    protected static final int UPDATE_BUTTON = 0;
    protected static final int REVERT_BUTTON = 1;
    protected static final int RESUME_BUTTON = 2;

From source file org.eclipse.rcptt.ui.commons.FileSelectionDialog.java

/**
 * Dialog for selecting a file in the workspace. Derived from {@link org.eclipse.ui.dialogs.ResourceSelectionDialog}
 */
public class FileSelectionDialog extends MessageDialog {
    // the root element to populate the viewer with
    private IAdaptable root;

From source file org.eclipse.rcptt.ui.launching.aut.AUTConnectionErrorDialog.java

public class AUTConnectionErrorDialog extends MessageDialog {

    private static String DEFAULT_ERROR_MESSAGE = "Oops! Couldn't connect to the application."; //$NON-NLS-1$
    private static String DIALOG_TITLE = "AUT Connection Error"; //$NON-NLS-1$
    private static String SHOW_FILES_QUESTION = "Would you like to view log file?"; //$NON-NLS-1$

From source file org.eclipse.recommenders.internal.snipmatch.rcp.BranchCheckoutFailureDialog.java

public class BranchCheckoutFailureDialog extends MessageDialog {

    private static final String RECOMMENDERS_FAQ_URL = "https://www.eclipse.org/recommenders/manual/#snippet-repository-update-guide"; //$NON-NLS-1$

    public BranchCheckoutFailureDialog(Shell parentShell, String repository, String failedVersion,
            String substituteVersion) {