Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import java.util.List;

import javax.swing.JComboBox;

public class Main {

    @SuppressWarnings("rawtypes")
    public static void resetComboBoxItems(JComboBox comboBox, List items) {
        comboBox.removeAllItems();
        addComboBoxItems(comboBox, items);
    }

    @SuppressWarnings("rawtypes")
    public static void addComboBoxItems(JComboBox comboBox, List items) {
        for (int i = 0; i < items.size(); i++) {
            comboBox.addItem(items.get(i));
        }
    }
}