Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import javax.swing.*;

public class Main {
    public static void populateComboBox(JComboBox combo, String[] labels) {
        combo.removeAllItems();
        for (Integer index = 0; index < labels.length; ++index) {
            combo.addItem(labels[index]);
        }
    }
}