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.lang.jsgraphql.ide.notifications.JSGraphQLConfigModuleDialog.java

public class JSGraphQLConfigModuleDialog extends DialogWrapper {

    @NotNull
    private final Project project;
    private ModulesComboBox modulesComboBox;

From source file com.intellij.lang.properties.references.I18nizeQuickFixDialog.java

public class I18nizeQuickFixDialog extends DialogWrapper implements I18nizeQuickFixModel {
    protected static final Logger LOG = Logger.getInstance("#com.intellij.codeInsight.i18n.I18nizeQuickFixDialog");

    private JTextField myValue;
    private JComboBox myKey;
    private final TextFieldWithHistory myPropertiesFile;

From source file com.intellij.packaging.impl.artifacts.JarArtifactFromModulesDialog.java

/**
 * @author nik
 */
public class JarArtifactFromModulesDialog extends DialogWrapper {
    private JPanel myMainPanel;
    private TextFieldWithBrowseButton myMainClassField;

From source file com.intellij.plugins.haxe.config.ui.StringValueDialog.java

/**
 * @author: Fedor.Korotkov
 */
public class StringValueDialog extends DialogWrapper {
    private JTextField myTextField;
    private JPanel myMainPanel;

From source file com.intellij.plugins.haxe.editor.HaxeRestoreReferencesDialog.java

/**
 * Created by as3boyan on 09.10.14.
 */
public class HaxeRestoreReferencesDialog extends DialogWrapper {
    private final String[] myNamedElements;
    private JList myList;

From source file com.intellij.plugins.haxe.ide.refactoring.introduce.HaxeIntroduceDialog.java

/**
 * User: Fedor.Korotkov
 */
public class HaxeIntroduceDialog extends DialogWrapper {
    private JPanel myContentPane;
    private JLabel myNameLabel;

From source file com.intellij.profile.codeInspection.ui.ScopesOrderDialog.java

/**
 * @author Dmitry Batkovich
 */
public class ScopesOrderDialog extends DialogWrapper {

    private final JList myOptionsList = new JBList();

From source file com.intellij.refactoring.anonymousToInner.AnonymousToInnerDialog.java

class AnonymousToInnerDialog extends DialogWrapper {
    private static final Logger LOG = Logger
            .getInstance("#com.intellij.refactoring.anonymousToInner.AnonymousToInnerDialog");

    private final Project myProject;
    private final PsiAnonymousClass myAnonClass;

From source file com.intellij.refactoring.changeSignature.CallerChooserBase.java

public abstract class CallerChooserBase<M extends PsiElement> extends DialogWrapper {
    private final M myMethod;
    private final Alarm myAlarm = new Alarm();
    private MethodNodeBase<M> myRoot;
    protected final Project myProject;
    private Tree myTree;

From source file com.intellij.refactoring.changeSignature.DefaultValueChooser.java

/**
 * User: anna
 * Date: Sep 13, 2010
 */
public class DefaultValueChooser extends DialogWrapper {
    private JRadioButton myLeaveBlankRadioButton;