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

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

Introduction

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

Usage

From source file com.android.tools.idea.gradle.editor.ui.GradleEditorComboBox.java

/**
 * {@link ComboBox} customized for working with gradle entity values.
 */
public class GradleEditorComboBox extends ComboBox {

    @Nullable

From source file krasa.grepconsole.grep.gui.MyTextFieldWithHistory.java

public class MyTextFieldWithHistory extends ComboBox {
    private int myHistorySize = 5;
    private final MyModel myModel;

    public MyTextFieldWithHistory() {
        myModel = new MyModel();

From source file org.jetbrains.plugins.groovy.refactoring.ui.GrTypeComboBox.java

/**
 * @author Maxim.Medvedev
 */
public class GrTypeComboBox extends ComboBox {

    private static final Logger LOG = Logger.getInstance(GrTypeComboBox.class);