Example usage for javax.swing JComboBox subclass-usage

List of usage examples for javax.swing JComboBox subclass-usage

Introduction

In this page you can find the example usage for javax.swing JComboBox subclass-usage.

Usage

From source file ca.sqlpower.wabit.swingui.report.selectors.FancyComboBoxSelector.java

public class FancyComboBoxSelector extends JComboBox implements SelectorComponent {

    private final ComboBoxSelector selector;
    private final Runnable refreshRoutine;
    private AtomicBoolean ignoreEvents = new AtomicBoolean(false);

From source file com.sec.ose.osi.ui.frm.main.identification.common.JComboLicenseName.java

/**
 * JComboLicenseName
 * @author suhyun47.kim, sjh.yoo, hankido.lee
 * 
 */
public class JComboLicenseName extends JComboBox<String> {

From source file com.sec.ose.osi.ui.frm.main.identification.JComboProjectName.java

/**
 * JComboProjectName
 * @author suhyun47.kim, sjh.yoo, hankido.lee
 * 
 */
public class JComboProjectName extends JComboBox<String> {

From source file com.rapidminer.gui.graphs.LayoutSelection.java

/**
 * The layout selection for the {@link GraphViewer}.
 * 
 * @author Ingo Mierswa
 */
public class LayoutSelection<V, E> extends JComboBox {

From source file edu.harvard.mcz.imagecapture.ui.FilteringGeogJComboBox.java

/**
 * @author mole
 *
 */
public class FilteringGeogJComboBox extends JComboBox<MCZbaseGeogAuthRec> implements FocusListener {
    private static final long serialVersionUID = -7988464282872345110L;

From source file edu.harvard.mcz.imagecapture.ui.FilteringAgentJComboBox.java

/**
 * @author mole
 *
 */
public class FilteringAgentJComboBox extends JComboBox<MCZbaseAuthAgentName> implements FocusListener {
    private static final long serialVersionUID = -7988464282872345110L;

From source file edu.ku.brc.af.ui.db.JEditComboBox.java

/**
 * An editable JComboBox that enables the user to edit the values in the list which actually creates a new value
 * in the picklist.
 *
 * @code_status Beta
 * 

From source file it.cnr.icar.eric.client.ui.swing.TreeCombo.java

public class TreeCombo extends JComboBox<Object> {
    /**
    * 
    */
    private static final long serialVersionUID = 4355824897884323096L;

From source file MemComboBoxDemo.java

class MemComboBox extends JComboBox {
    public static final int MAX_MEM_LEN = 30;

    public MemComboBox() {
        super();
        setEditable(true);

From source file org.yccheok.jstock.gui.AutoCompleteJComboBox.java

/**
 *
 * @author yccheok
 */
public class AutoCompleteJComboBox extends JComboBox implements JComboBoxPopupAdjustable {