]> git.mxchange.org Git - jaddressbook-lib.git/blob - src/org/mxchange/addressbook/BaseFrameworkSystem.java
Fixed call + introduced getColumnCount()
[jaddressbook-lib.git] / src / org / mxchange / addressbook / BaseFrameworkSystem.java
1 /*\r
2  * Copyright (C) 2015 Roland Haeder\r
3  *\r
4  * This program is free software: you can redistribute it and/or modify\r
5  * it under the terms of the GNU General Public License as published by\r
6  * the Free Software Foundation, either version 3 of the License, or\r
7  * (at your option) any later version.\r
8  *\r
9  * This program is distributed in the hope that it will be useful,\r
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
12  * GNU General Public License for more details.\r
13  *\r
14  * You should have received a copy of the GNU General Public License\r
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.\r
16  */\r
17 package org.mxchange.addressbook;\r
18 \r
19 import java.util.ResourceBundle;\r
20 import org.apache.logging.log4j.LogManager;\r
21 import org.apache.logging.log4j.Logger;\r
22 import org.mxchange.addressbook.application.Application;\r
23 import org.mxchange.addressbook.client.Client;\r
24 import org.mxchange.addressbook.manager.contact.ManageableContact;\r
25 \r
26 /**\r
27  * General class\r
28  *\r
29  * @author Roland Haeder\r
30  */\r
31 public class BaseFrameworkSystem implements FrameworkInterface {\r
32     /**\r
33      * Class' logger\r
34      */\r
35     private final Logger LOG;\r
36 \r
37     /**\r
38      * Application instance\r
39      */\r
40     private Application application;\r
41 \r
42     /**\r
43      * Client instance\r
44      */\r
45     private Client client;\r
46 \r
47     /**\r
48      * Contact manager instance\r
49      */\r
50     private ManageableContact contactManager;\r
51 \r
52     /**\r
53      * Name of used database table, handled over to backend\r
54      */\r
55     private String tableName;\r
56 \r
57     /**\r
58      * Bundle instance\r
59      */\r
60     private final ResourceBundle bundle;\r
61 \r
62     /**\r
63      * Initialize object\r
64      */\r
65     {\r
66         LOG = LogManager.getLogger(this);\r
67         bundle = ResourceBundle.getBundle("org/mxchange/addressbook/localization/bundle"); // NOI18N\r
68     }\r
69 \r
70     /**\r
71      * No instances can be created of this class\r
72      */\r
73     protected BaseFrameworkSystem () {\r
74     }\r
75 \r
76     /**\r
77      * Application instance\r
78      * \r
79      * @return the application\r
80      */\r
81     @Override\r
82     public final Application getApplication () {\r
83         return this.application;\r
84     }\r
85 \r
86     /**\r
87      * Client instance\r
88      * \r
89      * @return the client\r
90      */\r
91     @Override\r
92     public final Client getClient () {\r
93         return this.client;\r
94     }\r
95 \r
96     /**\r
97      * Contact manager instance\r
98      * @return the contactManager\r
99      */\r
100     @Override\r
101     public final ManageableContact getContactManager () {\r
102         return this.contactManager;\r
103     }\r
104 \r
105     /**\r
106      * Contact manager instance\r
107      * @param contactManager the contactManager to set\r
108      */\r
109     protected final void setContactManager (final ManageableContact contactManager) {\r
110         this.contactManager = contactManager;\r
111     }\r
112 \r
113     /**\r
114      * Client instance\r
115      * @param client the client to set\r
116      */\r
117     protected final void setClient (final Client client) {\r
118         this.client = client;\r
119     }\r
120 \r
121     /**\r
122      * Application instance\r
123      *\r
124      * @param application the application to set\r
125      */\r
126     protected final void setApplication(final Application application) {\r
127         this.application = application;\r
128     }\r
129 \r
130     /**\r
131      * Getter for logger\r
132      *\r
133      * @return Logger\r
134      */\r
135     protected final Logger getLogger () {\r
136         return this.LOG;\r
137     }\r
138 \r
139     /**\r
140      * Name of used database table, handled over to backend\r
141      * \r
142      * @return the tableName\r
143      */\r
144     protected final String getTableName () {\r
145         return this.tableName;\r
146     }\r
147 \r
148     /**\r
149      * Name of used database table, handled over to backend\r
150      * \r
151      * @param tableName the tableName to set\r
152      */\r
153     protected final void setTableName (final String tableName) {\r
154         this.tableName = tableName;\r
155     }\r
156 }\r