Example usage for javax.swing MutableComboBoxModel interface-usage

List of usage examples for javax.swing MutableComboBoxModel interface-usage

Introduction

In this page you can find the example usage for javax.swing MutableComboBoxModel interface-usage.

Usage

From source file org.jdal.swing.list.ListComboBoxModel.java

/**
 * A {@link MutableComboBoxModel} that use a List as Container
 * 
 * @author Jose Luis Martin
 */
public class ListComboBoxModel<T> extends ListListModel<T> implements MutableComboBoxModel<T> {

From source file com.anrisoftware.prefdialog.miscswing.comboboxhistory.HistoryComboBoxModel.java

/**
 * Retains a history of added items in the model. In addition a set of default
 * items can be set that can not be removed from the model.
 *
 * @author Erwin Mueller, erwin.mueller@deventm.org
 * @since 1.0

From source file net.pandoragames.far.ui.swing.FindFilePanel.java

class NoDuplicatesComboBoxModel implements MutableComboBoxModel {

    private List itemList = new ArrayList();
    private Object selectedItem;
    private List<ListDataListener> listenerList = new ArrayList<ListDataListener>();