de.tor.tribes.ui.models.DEPSourceTableModel.java Source code

Java tutorial

Introduction

Here is the source code for de.tor.tribes.ui.models.DEPSourceTableModel.java

Source

/* 
 * Copyright 2015 Torridity.
 *
 * 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.
 */
package de.tor.tribes.ui.models;

import de.tor.tribes.types.ext.Tribe;
import de.tor.tribes.types.ext.Village;
import de.tor.tribes.ui.wiz.dep.types.SupportSourceElement;
import java.util.LinkedList;
import java.util.List;
import javax.swing.table.AbstractTableModel;
import org.apache.commons.collections4.CollectionUtils;
import org.apache.commons.collections4.Predicate;

/**
 *
 * @author Torridity
 */
public class DEPSourceTableModel extends AbstractTableModel {

    private String[] columnNames = new String[] { "Spieler", "Dorf", "Einzelverteidigungen" };
    private Class[] types = new Class[] { Tribe.class, Village.class, Integer.class };
    private final List<SupportSourceElement> elements = new LinkedList<>();

    public DEPSourceTableModel() {
        super();
    }

    public void clean() {
        elements.clear();
        fireTableDataChanged();
    }

    public void addRow(final Village pVillage, int pSupports) {
        Object existing = CollectionUtils.find(elements, new Predicate() {

            @Override
            public boolean evaluate(Object o) {
                return ((SupportSourceElement) o).getVillage().equals(pVillage);
            }
        });
        if (existing == null) {
            elements.add(new SupportSourceElement(pVillage, pSupports));
        }
    }

    @Override
    public int getRowCount() {
        if (elements == null) {
            return 0;
        }
        return elements.size();
    }

    @Override
    public Class getColumnClass(int columnIndex) {
        return types[columnIndex];
    }

    @Override
    public boolean isCellEditable(int row, int column) {
        return false;
    }

    @Override
    public String getColumnName(int column) {
        return columnNames[column];
    }

    public void removeRow(int row) {
        elements.remove(row);
        fireTableDataChanged();
    }

    public SupportSourceElement getRow(int row) {
        return elements.get(row);
    }

    @Override
    public Object getValueAt(int row, int column) {
        if (elements == null || elements.size() - 1 < row) {
            return null;
        }
        SupportSourceElement element = elements.get(row);
        switch (column) {
        case 0:
            return element.getVillage().getTribe();
        case 1:
            return element.getVillage();
        default:
            return element.getSupports();
        }
    }

    @Override
    public int getColumnCount() {
        return columnNames.length;
    }
}