I can't figure out something using the constructor JTable(TableModel dm).

I'm using a LinkedList to manage my data so, to display it, I extended AbstractTableModel:

public class VolumeListTableModel extends AbstractTableModel {

    private static final long serialVersionUID = 1L;
    private LinkedList<Directory> datalist;
    private Object[] columnNames= {"ID", "Directory", "Wildcard"};


    public VolumeListTableModel(){
    }

    public void setDatalist(LinkedList<Directory> temp){
        this.datalist = temp;
    }

    public LinkedList<Directory> getDatalist(){
        return (LinkedList<Directory>) this.datalist.clone();
    }

    public Object[] getColumnNames() {
        return this.columnNames;    
    }

    @Override
    public int getColumnCount() {
        return Directory.numCols;
    }

    @Override
    public int getRowCount() {
        return this.datalist.size();
    }

    @Override
    public Object getValueAt(int row, int col) {

        Directory temp = this.datalist.get(row);

        switch(col){
        case 0:
            return temp.getId();
        case 1:
            return temp.getPath();
        case 2:
            return temp.getWildcard();
        default:
            return null;        
        }
    }

I'm doing something wrong because when I run my GUI I get column names labeled A,*B*,C.

link|improve this question

feedback

3 Answers

up vote 8 down vote accepted

There is no method in AbstractTableModel called getColumnNames, so I believe your method is being ignored. The actual method you want to override is the getColumnName method.

Try adding this method to your VolumeListTableModel class

public String getColumnName(int column) {
    return columnNames[column];
}
link|improve this answer
Thank you everybody. I'm giving the answer to Codemwnci due to the response time. – dierre Nov 16 '10 at 10:23
feedback

You need to override the getColumnName method which in your case will simply return columnNames[column];

link|improve this answer
Ach too slow. Codemwnci has a quicker and clearer answer. – Jim Nov 16 '10 at 10:13
feedback

You have to Override this method :

public String getColumnName(int column)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.