Java JComboBox Model getComboModelList(ComboBoxModel model)

Here you can find the source of getComboModelList(ComboBoxModel model)

Description

Return a List of Objects from a ComboBoxModel

License

Apache License

Parameter

Parameter Description
model ComboBoxModel

Return

a list of Objects with ComboBoxModel items

Declaration

public static List<Object> getComboModelList(ComboBoxModel<?> model) 

Method Source Code

//package com.java2s;
/*// ww w  .  ja  v a2s . co m
 * Copyright 2008-2011 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.util.ArrayList;

import java.util.List;

import javax.swing.ComboBoxModel;

public class Main {
    /**
     * Return a List of Objects from a ComboBoxModel
     * @param model ComboBoxModel
     * @return a list of Objects with ComboBoxModel items
     */
    public static List<Object> getComboModelList(ComboBoxModel<?> model) {
        ArrayList<Object> list = new ArrayList<Object>();
        for (int i = 0; i < model.getSize(); i++) {
            list.add(model.getElementAt(i));
        }
        return list;
    }
}

Related

  1. addItems(DefaultComboBoxModel comboBox, Iterable items)
  2. comboBoxContains(DefaultComboBoxModel model, Object obj)
  3. convertDefaultComboBoxModelToVector( DefaultComboBoxModel model)
  4. generateComboModel(Object[] values)
  5. generateInsertWhereComboBoxModel(String label)
  6. getNewDefaultComboBoxModel(ArrayList itemsToStream)
  7. getSelectedItemfromModel(Object combo)
  8. hasDataChanged(List newDatasets, ComboBoxModel currentModel)
  9. modelToList(DefaultComboBoxModel model)