]> git.mxchange.org Git - addressbook-lib.git/blob - Addressbook/src/org/mxchange/addressbook/model/contact/ContactTableModel.java
Global commit: Changed spaces to tabs, because all Java files have tabs for indenting
[addressbook-lib.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 javax.swing.table.TableModel;
20 import org.mxchange.addressbook.client.Client;
21 import org.mxchange.addressbook.model.BaseModel;
22
23 /**
24  * A table model for contacts
25  *
26  * @author Roland Haeder
27  */
28 public class ContactTableModel extends BaseModel implements TableModel {
29
30         /**
31          * Constructor with Client instance which holds the contact manager
32          *
33          * @param client Client instance
34          */
35         public ContactTableModel (final Client client) {
36                 // Parent super constructor
37                 super();
38
39                 // Set client
40                 this.setClient(client);
41         }
42
43         @Override
44         public Class<?> getColumnClass (final int columnIndex) {
45                 throw new UnsupportedOperationException("Not supported yet. columnIndex=" + columnIndex); //To change body of generated methods, choose Tools | Templates.
46         }
47
48         @Override
49         public int getColumnCount () {
50                 // Deligate this call to contact manager
51                 return this.getClient().getContactManager().getColumnCount();
52         }
53
54         @Override
55         public String getColumnName (final int columnIndex) {
56                 // Deligate this call to contact manager
57                 return this.getClient().getContactManager().getColumnName(columnIndex);
58         }
59
60         @Override
61         public int getRowCount () {
62                 // Deligate this call to contact manager
63                 return this.getClient().getContactManager().size();
64         }
65
66         @Override
67         public Object getValueAt (final int rowIndex, final int columnIndex) {
68                 throw new UnsupportedOperationException("Not supported yet. rowIndex=" + rowIndex + ",columnIndex=" + columnIndex); //To change body of generated methods, choose Tools | Templates.
69         }
70
71         @Override
72         public boolean isCellEditable (final int rowIndex, final int columnIndex) {
73                 throw new UnsupportedOperationException("Not supported yet. rowIndex=" + rowIndex + ",columnIndex=" + columnIndex); //To change body of generated methods, choose Tools | Templates.
74         }
75
76         @Override
77         public void setValueAt (final Object value, final int rowIndex, final int columnIndex) {
78                 throw new UnsupportedOperationException("Not supported yet. value=" + value + ",rowIndex=" + rowIndex + ",columnIndex=" + columnIndex); //To change body of generated methods, choose Tools | Templates.
79         }
80 }