List of usage examples for org.eclipse.jface.dialogs Dialog subclass-usage
From source file com.microsoft.azureexplorer.forms.OpenSSLFinderForm.java
public class OpenSSLFinderForm extends Dialog { private Button buttonOK; private Button buttonCancel; private Label notFoundLabel; private Label txtFileLabel; private Text txtFile;
From source file com.microsoft.azureexplorer.forms.QueueMessageForm.java
public class QueueMessageForm extends Dialog { private static String[] PERIODS = { "Days", "Hours", "Minutes", "Seconds" }; private Button buttonOK; private Label messageLabel; private Text messageTextArea; private Combo unitComboBox;
From source file com.microsoft.azureexplorer.forms.SubscriptionPropertyPage.java
public class SubscriptionPropertyPage extends Dialog { private Table tblSubscriptions; private CheckboxTableViewer tableViewer; private Button removeButton; private Button signInButton;
From source file com.microsoft.azureexplorer.forms.TableEntityForm.java
public class TableEntityForm extends Dialog { private Button buttonOK; private Button buttonCancel; private Button addPropertyButton; private Table propertiesTable;
From source file com.microsoft.azureexplorer.forms.UploadBlobFileForm.java
public class UploadBlobFileForm extends Dialog { private Link blobFolderLink; private Label nameLabel; private Text nameTextField; private Button browseButton; private Label folderLabel;
From source file com.microsoft.azureexplorer.forms.ViewMessageForm.java
public class ViewMessageForm extends Dialog { private String content; private Text messageTextArea; public ViewMessageForm(Shell parentShell, String content) { super(parentShell);
From source file com.microsoft.azuretools.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.azuretools.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.azuretools.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.azuretools.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;