Java JList Model removeFromList(String path, DefaultListModel model, JList list)

Here you can find the source of removeFromList(String path, DefaultListModel model, JList list)

Description

remove From List

License

Open Source License

Declaration

public static void removeFromList(String path, DefaultListModel model,
            JList list) 

Method Source Code

//package com.java2s;
/* //from   w w w  .j a va 2 s .c o  m
 * Copyright (C) 2014 Center of Excellence in Information Assurance
 *
 * 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 <http://www.gnu.org/licenses/>.
 */

import javax.swing.DefaultListModel;
import javax.swing.JList;

public class Main {
    public static void removeFromList(String path, DefaultListModel model,
            JList list) {
        if (path != null) {
            model.removeElement(path);
            list.setModel(model);
        }
    }
}

Related

  1. indexOf(Object obj, ListModel model)
  2. listAsListModel(ArrayList list)
  3. listModelEquals(final ListModel lm, final ListModel lm2)
  4. remove(final DefaultListModel list, final int[] indices)
  5. removeAll(DefaultListModel m, List o)
  6. setListModel(ListModel model, JList list)
  7. toDefaultListModel(ArrayList list)
  8. toList(ListModel model)
  9. toListModel(final List elements)