*
* @author Roland Haeder
*/
-public abstract class BaseClient extends BaseFrameworkSystem {
+public abstract class BaseClient extends BaseFrameworkSystem implements Client {
/**
* Application is not running by default
/**
* Shutdown method for all clients
*/
+ @Override
public void doShutdown () {
// Trace message
this.getLogger().trace("CALLED!"); //NOI18N
/**
* Enables the client
*/
+ @Override
public final void enableIsRunning () {
this.isRunning = true;
}
*
* @return Whether the application is still active
*/
+ @Override
public final boolean isRunning () {
// In console client, 0 may have been used
return this.isRunning;