]> git.mxchange.org Git - jcore.git/blob - src/org/mxchange/jcore/client/BaseClient.java
Initial import, mostly from Addressbook project
[jcore.git] / src / org / mxchange / jcore / client / BaseClient.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.jcore.client;
18
19 import org.mxchange.jcore.BaseFrameworkSystem;
20
21 /**
22  * A general client
23  *
24  * @author Roland Haeder
25  */
26 public abstract class BaseClient extends BaseFrameworkSystem {
27
28         /**
29          * Application is not running by default
30          */
31         private boolean isRunning;
32
33         /**
34          * No instances can be created of this class
35          */
36         protected BaseClient () {
37         }
38
39         /**
40          * Shutdown method for all clients
41          */
42         public void doShutdown () {
43                 // Trace message
44                 this.getLogger().trace("CALLED!"); //NOI18N
45
46                 // Disable client
47                 this.disableIsRunning();
48
49                 // Shuts down contact manager
50                 this.getManager().doShutdown();
51
52                 // Trace message
53                 this.getLogger().trace("EXIT!"); //NOI18N
54         }
55
56         /**
57          * Enables the client
58          */
59         public final void enableIsRunning () {
60                 this.isRunning = true;
61         }
62
63         /**
64          * Determines whether the application is still active by checking some
65          * conditions
66          *
67          * @return Whether the application is still active
68          */
69         public final boolean isRunning () {
70                 // In console client, 0 may have been used
71                 return this.isRunning;
72         }
73
74         /**
75          * Disables the client
76          */
77         protected final void disableIsRunning () {
78                 this.isRunning = false;
79         }
80 }