Example usage for javax.swing ComboBoxModel interface-usage

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

Introduction

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

Usage

From source file org.zaproxy.zap.view.widgets.UsersListModel.java

class UsersListModel extends AbstractListModel<User> implements ComboBoxModel<User> {

    private static final long serialVersionUID = 5648260449088479312L;
    private final TableModelListenerImpl tableModelListenerImpl;
    private User selectedItem;
    private UsersTableModel tableModel;

From source file edu.harvard.mcz.imagecapture.data.HigherGeographyComboBoxModel.java

/**
 * @author mole
 *
 */
public class HigherGeographyComboBoxModel implements ComboBoxModel<MCZbaseGeogAuthRec> {
    private static final long serialVersionUID = -4856432985354519476L;

From source file edu.harvard.mcz.imagecapture.data.AgentNameComboBoxModel.java

/**
 * @author mole
 *
 */
public class AgentNameComboBoxModel implements ComboBoxModel<MCZbaseAuthAgentName> {
    private static final long serialVersionUID = -4856432985354519476L;

From source file ru.apertum.qsystem.reports.model.QReportsList.java

/**
 *
 * @author Evgeniy Egorov
 */
public class QReportsList extends ATListModel<QReport> implements ComboBoxModel {

From source file org.pentaho.reporting.engine.classic.core.modules.gui.commonswing.EncodingComboBoxModel.java

/**
 * A model for the 'encoding' combo box. This combobox model presents a selection for all available string encodings.
 *
 * @author Thomas Morgner.
 */
public class EncodingComboBoxModel implements ComboBoxModel {

From source file org.sonar.ide.ui.ModulePanel.java

class ListComboBoxModel extends AbstractListModel<String> implements ComboBoxModel<String> {
    private final List<String> items;
    private String selectedItem;

    public String getSelectedItem() {
        return selectedItem;