/* * Copyright (C) 2010-2011 JPEXS * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ package com.jpexs.asdec.abc.gui; import com.jpexs.asdec.tags.DoABCTag; import java.util.Collections; import java.util.List; import javax.swing.ComboBoxModel; import javax.swing.event.ListDataListener; public class ABCComboBoxModel implements ComboBoxModel { public List list; public int itemIndex = 0; public static final String ROOT=" - all - "; public ABCComboBoxModel(List list) { this.list = list; Collections.sort(this.list); } public int getSize() { return 1+list.size(); } public Object getElementAt(int index) { if(index==0){ return ROOT; } return list.get(index-1); } public void addListDataListener(ListDataListener l) { } public void removeListDataListener(ListDataListener l) { } public void setSelectedItem(Object anItem) { if(anItem==ROOT){ itemIndex=0; }else{ itemIndex = 1+list.indexOf(anItem); } } public Object getSelectedItem() { return getElementAt(itemIndex); } }