]> git.mxchange.org Git - addressbook-swing.git/blob - Addressbook/src/org/mxchange/addressbook/model/contact/ContactTableModel.java
Added a lot more generic methods for columnName lookup (a field must be there) +...
[addressbook-swing.git] / Addressbook / src / org / mxchange / addressbook / model / contact / ContactTableModel.java
1 /*
2  * Copyright (C) 2015 Roland Haeder
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17 package org.mxchange.addressbook.model.contact;
18
19 import java.text.MessageFormat;
20 import javax.swing.table.TableModel;
21 import org.mxchange.addressbook.client.Client;
22 import org.mxchange.addressbook.model.BaseModel;
23
24 /**
25  * A table model for contacts
26  *
27  * @author Roland Haeder
28  */
29 public class ContactTableModel extends BaseModel implements TableModel {
30
31         /**
32          * Constructor with Client instance which holds the contact manager
33          *
34          * @param client Client instance
35          */
36         public ContactTableModel (final Client client) {
37                 // Trace message
38                 this.getLogger().trace(MessageFormat.format("client={1} - CALLED!", client)); //NOI18N
39
40                 // Client must not be null
41                 if (client == null)  {
42                         // Abort here
43                         throw new NullPointerException("client is null"); //NOI18N
44                 }
45
46                 // Set client
47                 this.setClient(client);
48         }
49
50         @Override
51         public Class<?> getColumnClass (final int columnIndex) {
52                 // All is the same
53                 return Object.class;
54         }
55
56         @Override
57         public int getColumnCount () {
58                 // Deligate this call to contact manager
59                 return this.getClient().getContactManager().getColumnCount();
60         }
61
62         @Override
63         public String getColumnName (final int columnIndex) {
64                 // Deligate this call to contact manager
65                 return this.getClient().getContactManager().getTranslatedColumnName(columnIndex);
66         }
67
68         @Override
69         public int getRowCount () {
70                 // Deligate this call to contact manager
71                 return this.getClient().getContactManager().size();
72         }
73
74         @Override
75         public Object getValueAt (final int rowIndex, final int columnIndex) {
76                 // Let the manager do this job for us
77                 return this.getClient().getContactManager().getValueFromRowColumn(rowIndex, columnIndex);
78         }
79
80         @Override
81         public boolean isCellEditable (final int rowIndex, final int columnIndex) {
82                 throw new UnsupportedOperationException("Not supported yet. rowIndex=" + rowIndex + ",columnIndex=" + columnIndex); //To change body of generated methods, choose Tools | Templates.
83         }
84
85         @Override
86         public void setValueAt (final Object value, final int rowIndex, final int columnIndex) {
87                 throw new UnsupportedOperationException("Not supported yet. value=" + value + ",rowIndex=" + rowIndex + ",columnIndex=" + columnIndex); //To change body of generated methods, choose Tools | Templates.
88         }
89 }