Dépôt officiel du code source de l'ERP OpenConcerto
Rev 65 | Blame | Compare with Previous | Last modification | View Log | RSS feed
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright 2011-2019 OpenConcerto, by ILM Informatique. All rights reserved.
*
* The contents of this file are subject to the terms of the GNU General Public License Version 3
* only ("GPL"). You may not use this file except in compliance with the License. You can obtain a
* copy of the License at http://www.gnu.org/licenses/gpl-3.0.html See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each file.
*/
package org.openconcerto.erp.core.sales.pos.ui;
import org.openconcerto.erp.core.sales.pos.model.Article;
import org.openconcerto.erp.core.sales.pos.model.Categorie;
import java.util.ArrayList;
import java.util.List;
import javax.swing.ListModel;
import javax.swing.event.ListDataEvent;
import javax.swing.event.ListDataListener;
public class ArticleModel implements ListModel {
private final List<Article> items = new ArrayList<>();
private List<ListDataListener> listeners = new ArrayList<>();
private Categorie categorie;
@Override
public void addListDataListener(ListDataListener l) {
listeners.add(l);
}
@Override
public Object getElementAt(int index) {
return items.get(index);
}
@Override
public int getSize() {
return items.size();
}
@Override
public void removeListDataListener(ListDataListener l) {
listeners.remove(l);
}
public void setCategorie(Categorie c) {
this.categorie = c;
this.items.clear();
if (c != null) {
this.items.addAll(c.getArticles());
}
fire();
}
public void setArticles(List<Article> list) {
this.items.addAll(list);
fire();
}
private void fire() {
for (ListDataListener l : listeners) {
l.contentsChanged(new ListDataEvent(this, ListDataEvent.CONTENTS_CHANGED, 0, this.listeners.size()));
}
}
public Categorie getRoot() {
return this.categorie;
}
}