List of usage examples for com.intellij.openapi.ui DialogWrapper subclass-usage
From source file com.atlassian.theplugin.idea.bamboo.BuildLabelForm.java
public class BuildLabelForm extends DialogWrapper { private JPanel mainPanel; private JTextField buildKeyField; private JTextField buildNumberKey; private JTextField labelField;
From source file com.atlassian.theplugin.idea.config.serverconfig.defaultCredentials.TestDefaultCredentialsDialog.java
/** * User: pmaruszak */ public class TestDefaultCredentialsDialog extends DialogWrapper { private static final int ALL_COLUMNS = 5; private Set<ServerDataExt> servers = new HashSet<ServerDataExt>();
From source file com.atlassian.theplugin.idea.crucible.CrucibleReviewCreateForm.java
public abstract class CrucibleReviewCreateForm extends DialogWrapper { private JPanel rootComponent; private JTextField titleText; private JComboBox crucibleServersComboBox; private JTextArea statementArea; private JComboBox projectsComboBox;
From source file com.atlassian.theplugin.idea.jira.ChangesetCreate.java
public class ChangesetCreate extends DialogWrapper { private JPanel contentPane; private JTextField changesetName; private JTextArea changesetComment; private JCheckBox isActive;
From source file com.atlassian.theplugin.idea.jira.DatePicker.java
/** * @author Jacek Jaroczynski */ public class DatePicker extends DialogWrapper implements CaretListener { private JPanel panel = new JPanel();
From source file com.atlassian.theplugin.idea.jira.GetUserNameDialog.java
public class GetUserNameDialog extends DialogWrapper { private JTextField userName; private JPanel panel; public GetUserNameDialog(String issueKey) { super(false);
From source file com.atlassian.theplugin.idea.jira.IssueCommentDialog.java
public class IssueCommentDialog extends DialogWrapper { private JPanel mainPanel; private JTextArea commentTextArea; public IssueCommentDialog(String issueKey) { super(false);
From source file com.atlassian.theplugin.idea.jira.IssueCreateDialog.java
public class IssueCreateDialog extends DialogWrapper { private JPanel mainPanel; private JTextArea description; private JComboBox projectComboBox; private JComboBox typeComboBox; private JTextField summary;
From source file com.atlassian.theplugin.idea.jira.JiraIssuesFilterPanel.java
public class JiraIssuesFilterPanel extends DialogWrapper { private JList projectList; private JList issueTypeList; private JList fixForList; private JList affectsVersionsList; private JComboBox reporterComboBox;
From source file com.atlassian.theplugin.idea.jira.PerformIssueActionForm.java
/** * @author Jacek Jaroczynski */ public class PerformIssueActionForm extends DialogWrapper implements FreezeListener { private JPanel root; private JPanel contentPanel;