Example usage for com.intellij.openapi.ui DialogWrapper subclass-usage

List of usage examples for com.intellij.openapi.ui DialogWrapper subclass-usage

Introduction

In this page you can find the example usage for com.intellij.openapi.ui DialogWrapper subclass-usage.

Usage

From source file com.intellij.codeInsight.NullableNotNullDialog.java

/**
 * User: anna
 * Date: 1/25/11
 */
public class NullableNotNullDialog extends DialogWrapper {
    private final Project myProject;

From source file com.intellij.codeInsight.template.impl.EditVariableDialog.java

class EditVariableDialog extends DialogWrapper {
    private ArrayList<Variable> myVariables = new ArrayList<Variable>();

    private JTable myTable;
    private Editor myEditor;
    private final List<TemplateContextType> myContextTypes;

From source file com.intellij.codeInspection.dataFlow.ConditionCheckDialog.java

/**
 * Dialog that appears when user clicks the "Configure IsNull/IsNotNull/True/False Check/Assertion Methods"
 * on the Errors dialog for the Constant Conditions Inspection.  It is divided into 6 parts
 * <ol>
 * <li>Is Null Check MethodsPanel</li>
 * <li>Is Not Null Check MethodsPanel</li>

From source file com.intellij.codeInspection.dataFlow.MethodCheckerDetailsDialog.java

/**
 * Dialog that appears when the user clicks the Add Button or double clicks a row item in a MethodsPanel.  The MethodsPanel is accessed from the ConditionCheckDialog
 */
class MethodCheckerDetailsDialog extends DialogWrapper implements PropertyChangeListener, ItemListener {
    private final @NotNull ConditionChecker.Type myType;
    private final @NotNull Project myProject;

From source file com.intellij.codeInspection.ex.SeverityEditorDialog.java

/**
 * User: anna
 * Date: 24-Feb-2006
 */
public class SeverityEditorDialog extends DialogWrapper {
    private final JPanel myPanel;

From source file com.intellij.codeInspection.export.ExportToHTMLDialog.java

public class ExportToHTMLDialog extends DialogWrapper {
    private final Project myProject;
    protected JCheckBox myCbOpenInBrowser;
    protected TextFieldWithBrowseButton myTargetDirectoryField;
    protected final boolean myCanBeOpenInBrowser;

From source file com.intellij.conversion.impl.ui.ConvertProjectDialog.java

/**
 * @author nik
 */
public class ConvertProjectDialog extends DialogWrapper {
    private static final Logger LOG = Logger.getInstance("#com.intellij.conversion.impl.ui.ConvertProjectDialog");
    private JPanel myMainPanel;

From source file com.intellij.debugger.ui.breakpoints.AddFieldBreakpointDialog.java

abstract class AddFieldBreakpointDialog extends DialogWrapper {
    private final Project myProject;
    private JPanel myPanel;
    private TextFieldWithBrowseButton myFieldChooser;
    private TextFieldWithBrowseButton myClassChooser;

From source file com.intellij.debugger.ui.breakpoints.AddWildcardBreakpointDialog.java

/**
 * @author Eugene Zhuravlev
 *         Date: Jan 10, 2006
 */
public class AddWildcardBreakpointDialog extends DialogWrapper {
    private JPanel myPanel;

From source file com.intellij.debugger.ui.breakpoints.EditClassFiltersDialog.java

public class EditClassFiltersDialog extends DialogWrapper {
    private ClassFilterEditor myClassFilterEditor;
    private ClassFilterEditor myClassExclusionFilterEditor;
    private Project myProject;
    private ClassFilter myChooserFilter;