]> git.mxchange.org Git - jcore.git/commitdiff
Renaming season: renamed manager -> facade
authorRoland Haeder <roland@mxchange.org>
Fri, 2 Oct 2015 07:49:36 +0000 (09:49 +0200)
committerRoland Haeder <roland@mxchange.org>
Fri, 2 Oct 2015 07:51:32 +0000 (09:51 +0200)
Signed-off-by:Roland Häder <roland@mxchange.org>

src/org/mxchange/jcore/BaseFrameworkSystem.java
src/org/mxchange/jcore/FrameworkInterface.java
src/org/mxchange/jcore/client/BaseClient.java
src/org/mxchange/jcore/facade/BaseFacade.java [new file with mode: 0644]
src/org/mxchange/jcore/facade/Facade.java [new file with mode: 0644]
src/org/mxchange/jcore/manager/BaseManager.java [deleted file]
src/org/mxchange/jcore/manager/Manageable.java [deleted file]
src/org/mxchange/jcore/manager/application/ApplicationManager.java
src/org/mxchange/jcore/manager/application/ManageableApplication.java

index 2656f8552866b93b36c7661711a34125d0168180..0dd6a561221b8ec859f134e849cd7c015be192e5 100644 (file)
@@ -20,7 +20,7 @@ import java.util.ResourceBundle;
 import java.util.StringTokenizer;
 import org.mxchange.jcore.application.Application;
 import org.mxchange.jcore.client.Client;
-import org.mxchange.jcore.manager.Manageable;
+import org.mxchange.jcore.facade.Facade;
 
 /**
  * General class
@@ -52,7 +52,7 @@ public abstract class BaseFrameworkSystem implements FrameworkInterface {
        /**
         * Manager instance
         */
-       private Manageable manager;
+       private Facade facade;
 
        /**
         * Initialize object
@@ -154,17 +154,17 @@ public abstract class BaseFrameworkSystem implements FrameworkInterface {
        }
 
        @Override
-       public Manageable getManager () {
-               return this.manager;
+       public Facade getFacade () {
+               return this.facade;
        }
 
        /**
         * Manager instance
         * <p>
-        * @param manager the manager instance to set
+        * @param facade the facade instance to set
         */
-       protected void setManager (final Manageable manager) {
-               this.manager = manager;
+       protected void setFacade (final Facade facade) {
+               this.facade = facade;
        }
 
        @Override
index 1c02de64c231fdce6fbaa97c7dced831c8783341..2a9a6bd436344f48651c7dec7dbd6c0c5efa41a5 100644 (file)
@@ -18,7 +18,7 @@ package org.mxchange.jcore;
 
 import org.mxchange.jcore.application.Application;
 import org.mxchange.jcore.client.Client;
-import org.mxchange.jcore.manager.Manageable;
+import org.mxchange.jcore.facade.Facade;
 
 /**
  * A general interface which should be always expanded
@@ -51,7 +51,7 @@ public interface FrameworkInterface {
         * <p>
         * @return Manager instance
         */
-       public Manageable getManager ();
+       public Facade getFacade ();
 
        /**
         * Getter for human-readable string from given key
index b8567c3c859e07cfe029daeff2e109168c46f867..945a0df745280e44786c31152473a0f0377217b9 100644 (file)
@@ -44,7 +44,7 @@ public abstract class BaseClient extends BaseFrameworkSystem implements Client {
                this.disableIsRunning();
 
                // Shuts down contact manager
-               this.getManager().doShutdown();
+               this.getFacade().doShutdown();
        }
 
        @Override
diff --git a/src/org/mxchange/jcore/facade/BaseFacade.java b/src/org/mxchange/jcore/facade/BaseFacade.java
new file mode 100644 (file)
index 0000000..9e7c169
--- /dev/null
@@ -0,0 +1,34 @@
+/*
+ * Copyright (C) 2015 Roland Haeder
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+package org.mxchange.jcore.facade;
+
+import org.mxchange.jcore.BaseFrameworkSystem;
+
+/**
+ * A general manager
+ * <p>
+ * @author Roland Haeder<roland@mxchange.org>
+ * @version 0.0
+ */
+public abstract class BaseFacade extends BaseFrameworkSystem implements Facade {
+
+       /**
+        * No instances can be created of this class
+        */
+       protected BaseFacade () {
+       }
+}
diff --git a/src/org/mxchange/jcore/facade/Facade.java b/src/org/mxchange/jcore/facade/Facade.java
new file mode 100644 (file)
index 0000000..315329c
--- /dev/null
@@ -0,0 +1,37 @@
+/*
+ * Copyright (C) 2015 Roland Haeder
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+package org.mxchange.jcore.facade;
+
+import java.io.IOException;
+import java.sql.SQLException;
+import org.mxchange.jcore.FrameworkInterface;
+
+/**
+ * A general interface for any kind of facade classes
+ * <p>
+ * @author Roland Haeder<roland@mxchange.org>
+ */
+public interface Facade extends FrameworkInterface {
+
+       /**
+        * Shuts down this facade
+        * <p>
+        * @throws java.sql.SQLException If an SQL error occurs
+        * @throws java.io.IOException If an IO error occurs
+        */
+       public void doShutdown () throws SQLException, IOException;
+}
diff --git a/src/org/mxchange/jcore/manager/BaseManager.java b/src/org/mxchange/jcore/manager/BaseManager.java
deleted file mode 100644 (file)
index 3445f98..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * Copyright (C) 2015 Roland Haeder
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
- */
-package org.mxchange.jcore.manager;
-
-import org.mxchange.jcore.BaseFrameworkSystem;
-
-/**
- * A general manager
- * <p>
- * @author Roland Haeder<roland@mxchange.org>
- * @version 0.0
- */
-public abstract class BaseManager extends BaseFrameworkSystem implements Manageable {
-
-       /**
-        * No instances can be created of this class
-        */
-       protected BaseManager () {
-       }
-}
diff --git a/src/org/mxchange/jcore/manager/Manageable.java b/src/org/mxchange/jcore/manager/Manageable.java
deleted file mode 100644 (file)
index 5213c74..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- * Copyright (C) 2015 Roland Haeder
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
- */
-package org.mxchange.jcore.manager;
-
-import java.io.IOException;
-import java.sql.SQLException;
-import org.mxchange.jcore.FrameworkInterface;
-
-/**
- * A general interface for any kind of manager classes
- * <p>
- * @author Roland Haeder<roland@mxchange.org>
- */
-public interface Manageable extends FrameworkInterface {
-
-       /**
-        * Shuts down this contact manager
-        * <p>
-        * @throws java.sql.SQLException If an SQL error occurs
-        * @throws java.io.IOException If an IO error occurs
-        */
-       public void doShutdown () throws SQLException, IOException;
-}
index c20012b559c336eb2db4aa867bb138fd66220c58..fc988e542f9815cbb261ae3e6282091e5dbb4b19 100644 (file)
@@ -18,14 +18,14 @@ package org.mxchange.jcore.manager.application;
 
 import org.mxchange.jcore.application.Application;
 import org.mxchange.jcore.exceptions.MenuInitializationException;
-import org.mxchange.jcore.manager.BaseManager;
+import org.mxchange.jcore.facade.BaseFacade;
 
 /**
  * Application manager
  * <p>
  * @author Roland Haeder<roland@mxchange.org>
  */
-public class ApplicationManager extends BaseManager implements ManageableApplication {
+public class ApplicationManager extends BaseFacade implements ManageableApplication {
 
        /**
         * Self instance of this manager
index 9c91fe738de24b156a9e73ef1ecafce0a165eb3d..b2a8d3a2f42ce2370df3431357b86f8abd7f086f 100644 (file)
 package org.mxchange.jcore.manager.application;
 
 import org.mxchange.jcore.exceptions.MenuInitializationException;
-import org.mxchange.jcore.manager.Manageable;
+import org.mxchange.jcore.facade.Facade;
 
 /**
  * An interface for application manager
  * <p>
  * @author Roland Haeder<roland@mxchange.org>
  */
-public interface ManageableApplication extends Manageable {
+public interface ManageableApplication extends Facade {
 
        /**
         * Launches application