List of usage examples for com.intellij.openapi.ui DialogWrapper subclass-usage
From source file com.microsoft.intellij.ui.azureroles.CertificateDialog.java
public class CertificateDialog extends DialogWrapper { private JPanel contentPane; private JTextField txtName; private JTextField txtThumb; private Module module;
From source file com.microsoft.intellij.ui.azureroles.DebugConfigurationDialog.java
/** * This Class provides the debug option to the user * to enable/disable project debugging. */ public class DebugConfigurationDialog extends DialogWrapper { private JPanel contentPane;
From source file com.microsoft.intellij.ui.azureroles.EndpointDialog.java
public class EndpointDialog extends DialogWrapper { private static final String AUTO = "(auto)"; private JPanel contentPane; private JTextField txtPublicPort; private JTextField txtPublicPortRangeEnd;
From source file com.microsoft.intellij.ui.azureroles.EnvVarDialog.java
public class EnvVarDialog extends DialogWrapper { private JPanel contentPane; private JTextField txtName; private JTextField txtValue; private Map<String, String> mapEnvVar;
From source file com.microsoft.intellij.ui.azureroles.ImportExportDialog.java
public class ImportExportDialog extends DialogWrapper { private static final String[] IMP_METHODS = { "WAR", "JAR", "EAR", "copy", "zip", "none" }; private static final String[] CLOUD_METHODS = { "same", "unzip", "copy" }; private JPanel contentPane; private JTextField txtFromPath;
From source file com.microsoft.intellij.ui.azureroles.LocalStorageResourceDialog.java
public class LocalStorageResourceDialog extends DialogWrapper { private JPanel contentPane; private JTextField txtResource; private JTextField txtSize; private JCheckBox btnClean; private JTextField txtVar;
From source file com.microsoft.intellij.ui.azureroles.SimplePfxPwdDlg.java
public class SimplePfxPwdDlg extends DialogWrapper { private JPanel contentPane; private JPasswordField txtPwd; private String pfxPath;
From source file com.microsoft.intellij.ui.components.AzureDialogWrapper.java
/** * Created by juniwang on 4/19/2017. * Subclass of DialogWrapper. Do some common implementation here like the telemetry. */ public abstract class AzureDialogWrapper extends DialogWrapper implements TelemetryProperties { protected static final int HELP_CODE = -1;
From source file com.microsoft.intellij.ui.components.DefaultDialogWrapper.java
public class DefaultDialogWrapper extends DialogWrapper { private AzureAbstractPanel contentPanel; public DefaultDialogWrapper(Project project, AzureAbstractPanel panel) { super(project, true); this.contentPanel = panel;
From source file com.microsoft.intellij.ui.components.WindowsAzurePage.java
public abstract class WindowsAzurePage extends DialogWrapper { private static final EventListenerList LISTENERS = new EventListenerList(); // protected WindowsAzurePage(String pageName) { // super(pageName);