]> git.mxchange.org Git - addressbook-swing.git/blob - Addressbook/src/org/mxchange/addressbook/model/BaseModel.java
Introduced new model as we need gender value verfication, maybe this works?
[addressbook-swing.git] / Addressbook / src / org / mxchange / addressbook / model / BaseModel.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;
18
19 import java.text.MessageFormat;
20 import javax.swing.event.EventListenerList;
21 import javax.swing.event.ListDataListener;
22 import javax.swing.event.TableModelListener;
23 import org.mxchange.addressbook.BaseFrameworkSystem;
24
25 /**
26  *
27  * @author Roland Haeder
28  */
29 public class BaseModel extends BaseFrameworkSystem {
30         /**
31          * List of event listeners
32          */
33         private final EventListenerList eventListenerList;
34
35         /**
36          * Protected constructor
37          */
38         protected BaseModel () {
39                 // Init listener list
40                 this.eventListenerList = new EventListenerList();
41         }
42
43         /**
44          * Adds a lister of this type to the list
45          *
46          * @param listener Listener instance
47          */
48         public void addListDataListener (final ListDataListener listener) {
49                 // Debug message
50                 this.getLogger().debug(MessageFormat.format("Adding listener {0} ...", listener.getClass()));
51                 
52                 // Remove listener
53                 this.eventListenerList.add(ListDataListener.class, listener);
54         }
55
56         /**
57          * Adds a TableModel listener instance to the event list.
58          *
59          * @param listener Lister instance
60          */
61         public void addTableModelListener (final TableModelListener listener) {
62                 // Debug message
63                 this.getLogger().debug(MessageFormat.format("Adding listener {0} ...", listener.getClass()));
64
65                 // Add listener
66                 this.eventListenerList.add(TableModelListener.class, listener);
67         }
68
69         /**
70          * Removes given listener
71          *
72          * @param listener Listener instance
73          */
74         public void removeListDataListener (final ListDataListener listener) {
75                 // Debug message
76                 this.getLogger().debug(MessageFormat.format("Removing listener {0} ...", listener.getClass()));
77
78                 // Remove listener
79                 this.eventListenerList.remove(ListDataListener.class, listener);
80         }
81
82         /**
83          * Removes a TableModel listener instance from the event list.
84          * 
85          * @param listener Listener instance
86          */
87         public void removeTableModelListener (final TableModelListener listener) {
88                 // Debug message
89                 this.getLogger().debug(MessageFormat.format("Removing listener {0} ...", listener.getClass()));
90
91                 // Remove listener
92                 this.eventListenerList.remove(TableModelListener.class, listener);
93         }
94 }