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 org.apache.camel.idea.preference.properties.CamelEditDialog.java

class CamelEditDialog extends DialogWrapper {

    private JTextField textfield;

    CamelEditDialog(Project project) {
        super(project, true);

From source file org.clarent.ivyidea.exception.ui.IvyIdeaExceptionDialog.java

/**
 * Standard dialog for showing exception feedback to users from IvyIDEA.
 * Allows you to specify a hyperlink so the user do a single click to navigate to the UI where the problem
 * can be resolved. 
 *
 * @author Guy Mahieu

From source file org.coding.git.ui.CodingNetLoginDialog.java

/**
 * @author robin
 *  Based on https://github.com/JetBrains/intellij-community/blob/master/plugins/github/src/org/jetbrains/plugins/github/ui/GithubLoginDialog.java
 * @author JetBrains s.r.o.
 * @author oleg
 * @date 10/20/10

From source file org.codinjutsu.tools.mongo.view.AbstractAddDialog.java

public abstract class AbstractAddDialog extends DialogWrapper {
    private static final Map<JsonDataType, TextFieldWrapper> UI_COMPONENT_BY_JSON_DATATYPE = new HashMap<JsonDataType, TextFieldWrapper>();

    static {

        UI_COMPONENT_BY_JSON_DATATYPE.put(JsonDataType.STRING, new StringFieldWrapper());

From source file org.codinjutsu.tools.mongo.view.ConfigurationDialog.java

class ConfigurationDialog extends DialogWrapper {

    private final MongoManager mongoManager;
    private final ServerConfiguration configuration;
    private ServerConfigurationPanel serverConfigurationPanel;

From source file org.codinjutsu.tools.nosql.ConfigurationDialog.java

class ConfigurationDialog extends DialogWrapper {

    private final ServerConfigurationPanelFactory serverConfigurationPanelFactory;
    private final ServerConfiguration configuration;
    private ServerConfigurationPanel serverConfigurationPanel;

From source file org.codinjutsu.tools.nosql.mongo.view.AbstractAddDialog.java

public abstract class AbstractAddDialog extends DialogWrapper {
    private static final Map<JsonDataType, TextFieldWrapper> UI_COMPONENT_BY_JSON_DATATYPE = new HashMap<JsonDataType, TextFieldWrapper>();

    static {

        UI_COMPONENT_BY_JSON_DATATYPE.put(JsonDataType.STRING, new StringFieldWrapper());

From source file org.codinjutsu.tools.nosql.SelectDatabaseVendorDialog.java

public class SelectDatabaseVendorDialog extends DialogWrapper {

    private JPanel mainPanel;
    private ComboBox databaseVendorCombobox;

    protected SelectDatabaseVendorDialog(Component parent) {

From source file org.community.intellij.plugins.communitycase.checkin.PushActiveBranchesDialog.java

/**
 * The dialog that allows pushing active branches.
 */
public class PushActiveBranchesDialog extends DialogWrapper {
    private static final int HASH_PREFIX_SIZE = 8; // Amount of digits to show in commit prefix

From source file org.community.intellij.plugins.communitycase.checkin.PushDialog.java

/**
 * The push dialog
 */
public class PushDialog extends DialogWrapper {
    /**
     * the logger