How do I get the previous or last item?

Craig Wayne picture Craig Wayne · Feb 1, 2013 · Viewed 7.7k times · Source

How do I get the last or previous or unselected item and then the new item for a JComboBox?

Answer

Craig Wayne picture Craig Wayne · Feb 1, 2013

I assume this applies to all Objects that allow for which you to add Item Listeners to them.

String[] items = {"item 1","item 2"," item 3","item 4"};
JComboBox combo = new JComboBox(items)
combo.addItemListener(new ItemListener(){
public void itemStateChanged(ItemEvent ie)
{
   if(ie.getStateChange() == ItemEvent.DESELECTED) //edit: bracket was missing
   {
      System.out.println("Previous item: " + ie.getItem()); //edit: bracket was missing
   }
   else if(ie.getStateChange() == ItemEvent.SELECTED)
   {
      System.out.println("Current \ New item: " + ie.getItem());
   }
}