Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import java.awt.event.ItemListener;

import javax.swing.JComboBox;

public class Main {
    /**
     * select index silently
     * @param aComboBox combo box
     * @param anIndex index
     * @param aListener listener to be removed when selecting index
     */
    public final static void SelectIndexSilently(JComboBox aComboBox, int anIndex, ItemListener aListener) {
        aComboBox.removeItemListener(aListener);
        aComboBox.setSelectedIndex(anIndex);
        aComboBox.addItemListener(aListener);
    }
}