Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Open Source License 

import javax.swing.ComboBoxModel;
import javax.swing.JComboBox;

public class Main {
    /**
     * @param comboBox
     * @param value
     * @return if the comboBox contains the specified value
     */
    public static boolean containsValue(JComboBox comboBox, String value) {
        ComboBoxModel model = comboBox.getModel();
        int size = model.getSize();
        for (int i = 0; i < size; i++) {
            Object element = model.getElementAt(i);
            if (element.equals(value)) {
                return true;
            }
        }
        return false;
    }
}