]> git.mxchange.org Git - jcore.git/blobdiff - src/org/mxchange/jcore/client/BaseClient.java
Moved more stuff from addressbook to here
[jcore.git] / src / org / mxchange / jcore / client / BaseClient.java
index dedc3fad06d1c25c5e63732dae32f0b09fc56ccc..1f724af9cb47aa83689daa5b0859a23d8f19c98d 100644 (file)
@@ -23,7 +23,7 @@ import org.mxchange.jcore.BaseFrameworkSystem;
  *
  * @author Roland Haeder
  */
-public abstract class BaseClient extends BaseFrameworkSystem {
+public abstract class BaseClient extends BaseFrameworkSystem implements Client {
 
        /**
         * Application is not running by default
@@ -39,6 +39,7 @@ public abstract class BaseClient extends BaseFrameworkSystem {
        /**
         * Shutdown method for all clients
         */
+       @Override
        public void doShutdown () {
                // Trace message
                this.getLogger().trace("CALLED!"); //NOI18N
@@ -56,6 +57,7 @@ public abstract class BaseClient extends BaseFrameworkSystem {
        /**
         * Enables the client
         */
+       @Override
        public final void enableIsRunning () {
                this.isRunning = true;
        }
@@ -66,6 +68,7 @@ public abstract class BaseClient extends BaseFrameworkSystem {
         *
         * @return Whether the application is still active
         */
+       @Override
        public final boolean isRunning () {
                // In console client, 0 may have been used
                return this.isRunning;