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