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

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

Introduction

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

Usage

From source file com.maccasoft.template.AboutDialog.java

public class AboutDialog extends Dialog {

    public AboutDialog(Shell parentShell) {
        super(parentShell);
    }

From source file com.matlab.eclipse.meditor.dialogs.ExportDialog.java

/**
 * Dialog used for file exports. The user can specify file specific data and export options 
 * that may change from one export to the next. 
 * @author Georg Huhs
 */
public class ExportDialog extends Dialog {

From source file com.mentor.nucleus.bp.core.ui.dialogs.ScrolledTextDialog.java

public class ScrolledTextDialog extends Dialog {

    private String title;
    private String textContents;
    private String message;
    private boolean allowCancel;

From source file com.microsoft.applicationinsights.preference.ApplicationInsightsDetailsDialog.java

/**
 * Class is intended for displaying the full information
 * about the selected application insight resource.
 */
public class ApplicationInsightsDetailsDialog extends Dialog {
    ApplicationInsightsResource resource;

From source file com.microsoft.azure.hdinsight.spark.ui.SparkSubmissionExDialog.java

public class SparkSubmissionExDialog extends Dialog {

    private final int margin = 10;
    private final String DIALOG_TITLE = "Spark Submission";
    private static String[] COLUMN_NAMES = { "Key", "Value" };

From source file com.microsoft.azureexplorer.forms.CreateBlobContainerForm.java

public class CreateBlobContainerForm extends Dialog {
    private static String NAMING_GUIDELINES_LINK = "<a href=\"http://go.microsoft.com/fwlink/?LinkId=255555\">Naming Guidelines</a>";

    private Label nameLabel;
    private Text nameTextField;
    private Link namingGuidelinesLink;

From source file com.microsoft.azureexplorer.forms.CreateQueueForm.java

public class CreateQueueForm extends Dialog {
    private static String NAMING_GUIDELINES_LINK = "<a href=\"http://go.microsoft.com/fwlink/?LinkId=255557\">Naming Guidelines</a>";
    private static final String NAME_REGEX = "^[a-z0-9](?!.*--)[a-z0-9-]+[a-z0-9]$";
    private static final int NAME_MAX = 63;
    private static final int NAME_MIN = 3;
    private Button buttonOK;

From source file com.microsoft.azureexplorer.forms.CreateStorageAccountForm.java

public class CreateStorageAccountForm extends Dialog {
    private static final String PRICING_LINK = "<a href=\"http://go.microsoft.com/fwlink/?LinkID=400838\">Read more about replication services and pricing details</a>";

    private enum ReplicationTypes {
        Standard_LRS, Standard_GRS, Standard_RAGRS;

From source file com.microsoft.azureexplorer.forms.CreateTableForm.java

public class CreateTableForm extends Dialog {
    private static String NAMING_GUIDELINES_LINK = "<a href=\"http://go.microsoft.com/fwlink/?LinkId=267429\">Naming Guidelines</a>";
    private Button buttonOK;
    private Label nameLabel;
    private Text nameTextField;
    private Link namingGuidelinesLink;

From source file com.microsoft.azureexplorer.forms.ExternalStorageAccountForm.java

public class ExternalStorageAccountForm extends Dialog {
    public static final String HTTP = "http";
    public static final String HTTPS = "https";

    private Link privacyLink;
    private Label headerNote;