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 com.amazonaws.eclipse.ec2.ui.views.instances.OpenShellDialog.java

public final class OpenShellDialog extends MessageDialog {

    private Text userNameText;
    private String userName;

    public OpenShellDialog() {

From source file com.amazonaws.eclipse.elasticbeanstalk.CantConnectDialog.java

/**
 * Dialog to inform the user that they can't connect to AWS Elastic Beanstalk, with a
 * customizable message.
 */
public class CantConnectDialog extends MessageDialog {

From source file com.amazonaws.eclipse.elasticbeanstalk.DeploymentInformationDialog.java

/**
 * Dialog to collect information about a deployment prior to its creation.
 */
public class DeploymentInformationDialog extends MessageDialog {

    private final boolean enableDebugging;

From source file com.amazonaws.eclipse.elasticbeanstalk.NoCredentialsDialog.java

/**
 * Simple dialog to inform users that they need to configure their AWS credentials.
 */
public class NoCredentialsDialog extends MessageDialog {

    public NoCredentialsDialog() {

From source file com.amazonaws.eclipse.elasticbeanstalk.PublishDialog.java

final class PublishDialog extends MessageDialog {
    private static final String PUBLISH_DIALOG_SETTINGS_SECTION = "PublishDialogSettings";

    private final IDialogSettings publishDialogSettings;
    private String versionLabel;

From source file com.amazonaws.eclipse.elasticbeanstalk.server.ui.configEditor.ExportTemplateDialog.java

/**
 * Simple wizard to export an environment configuration template.
 */
public class ExportTemplateDialog extends MessageDialog {

    private String templateName;

From source file com.amazonaws.eclipse.elasticbeanstalk.server.ui.configEditor.ImportTemplateDialog.java

/**
 * Dialog to prompt the user to select a template to import into their editor.
 */
public class ImportTemplateDialog extends MessageDialog {

    private String templateName;

From source file com.amazonaws.eclipse.elasticbeanstalk.server.ui.IAMOperationNotAllowedErrorDialog.java

/**
 * The dialog to show if the current user doens't have sufficient permission to
 * perform iam:listRoles when configuring the IAM role for a new Beanstalk environment.
 */
public class IAMOperationNotAllowedErrorDialog extends MessageDialog {

From source file com.amazonaws.eclipse.explorer.dynamodb.TablePropertiesDialog.java

/**
 * Dialog to show the table properties.
 */
public class TablePropertiesDialog extends MessageDialog {

    private final String tableName;

From source file com.amazonaws.eclipse.explorer.s3.dnd.KeySelectionDialog.java

public class KeySelectionDialog extends MessageDialog {

    String keyName;

    public KeySelectionDialog(Shell shell, File toUpload) {
        this(shell, "", toUpload);