]> git.mxchange.org Git - jfinancials-swing.git/blob - Addressbook/src/org/mxchange/addressbook/model/contact/ContactTableModel.java
Renamed some classes/interfaces to make it clear they belong only to this project...
[jfinancials-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.jcore.client.Client;
22 import org.mxchange.jcore.manager.database.ManageableDatabase;
23 import org.mxchange.jcore.model.BaseModel;
24
25 /**
26  * A table model for contacts
27  *
28  * @author Roland Haeder
29  */
30 public class ContactTableModel extends BaseModel implements TableModel {
31
32         /**
33          * Constructor with Client instance which holds the contact manager
34          *
35          * @param client Client instance
36          */
37         public ContactTableModel (final Client client) {
38                 // Trace message
39                 this.getLogger().trace(MessageFormat.format("client={1} - CALLED!", client)); //NOI18N
40
41                 // Client must not be null
42                 if (client == null)  {
43                         // Abort here
44                         throw new NullPointerException("client is null"); //NOI18N
45                 }
46
47                 // Set client
48                 this.setClient(client);
49         }
50
51         @Override
52         public Class<?> getColumnClass (final int columnIndex) {
53                 // All is the same
54                 return Object.class;
55         }
56
57         @Override
58         public int getColumnCount () {
59                 // Get manager
60                 ManageableDatabase manager = (ManageableDatabase) this.getClient().getManager();
61
62                 // Deligate this call to contact manager
63                 return manager.getColumnCount();
64         }
65
66         @Override
67         public String getColumnName (final int columnIndex) {
68                 // Get manager
69                 ManageableDatabase manager = (ManageableDatabase) this.getClient().getManager();
70
71                 // Deligate this call to contact manager
72                 return manager.getTranslatedColumnName(columnIndex);
73         }
74
75         @Override
76         public int getRowCount () {
77                 // Get manager
78                 ManageableDatabase manager = (ManageableDatabase) this.getClient().getManager();
79
80                 // Deligate this call to contact manager
81                 return manager.size();
82         }
83
84         @Override
85         public Object getValueAt (final int rowIndex, final int columnIndex) {
86                 // Get manager
87                 ManageableDatabase manager = (ManageableDatabase) this.getClient().getManager();
88
89                 // Deligate this call to contact manager
90                 return manager.getValueFromRowColumn(rowIndex, columnIndex);
91         }
92
93         @Override
94         public boolean isCellEditable (final int rowIndex, final int columnIndex) {
95                 throw new UnsupportedOperationException("Not supported yet. rowIndex=" + rowIndex + ",columnIndex=" + columnIndex); //To change body of generated methods, choose Tools | Templates.
96         }
97
98         @Override
99         public void setValueAt (final Object value, final int rowIndex, final int columnIndex) {
100                 throw new UnsupportedOperationException("Not supported yet. value=" + value + ",rowIndex=" + rowIndex + ",columnIndex=" + columnIndex); //To change body of generated methods, choose Tools | Templates.
101         }
102 }