From 51d313937a598a0e0c68832923b97f9a151dbafa Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Fri, 4 Sep 2015 21:50:46 +0200 Subject: [PATCH] =?utf8?q?It=20is=20part=20of=20the=20model.=20Signed-off-?= =?utf8?q?by:Roland=20H=C3=A4der=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/org/mxchange/jcore/BaseFrameworkSystem.java | 2 +- src/org/mxchange/jcore/client/Client.java | 2 +- src/org/mxchange/jcore/{ => model}/contact/BaseContact.java | 4 ++-- src/org/mxchange/jcore/{ => model}/contact/Contact.java | 4 ++-- src/org/mxchange/jcore/{ => model}/contact/gender/Gender.java | 2 +- .../jcore/{ => model}/contact/gender/GenderUtils.java | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) rename src/org/mxchange/jcore/{ => model}/contact/BaseContact.java (99%) rename src/org/mxchange/jcore/{ => model}/contact/Contact.java (98%) rename src/org/mxchange/jcore/{ => model}/contact/gender/Gender.java (98%) rename src/org/mxchange/jcore/{ => model}/contact/gender/GenderUtils.java (97%) diff --git a/src/org/mxchange/jcore/BaseFrameworkSystem.java b/src/org/mxchange/jcore/BaseFrameworkSystem.java index 0e32cb5..aed856b 100644 --- a/src/org/mxchange/jcore/BaseFrameworkSystem.java +++ b/src/org/mxchange/jcore/BaseFrameworkSystem.java @@ -24,7 +24,7 @@ import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.mxchange.jcore.application.Application; import org.mxchange.jcore.client.Client; -import org.mxchange.jcore.contact.Contact; +import org.mxchange.jcore.model.contact.Contact; import org.mxchange.jcore.manager.Manageable; /** diff --git a/src/org/mxchange/jcore/client/Client.java b/src/org/mxchange/jcore/client/Client.java index 5131773..475c91c 100644 --- a/src/org/mxchange/jcore/client/Client.java +++ b/src/org/mxchange/jcore/client/Client.java @@ -19,7 +19,7 @@ package org.mxchange.jcore.client; import java.io.IOException; import java.sql.SQLException; import org.mxchange.jcore.FrameworkInterface; -import org.mxchange.jcore.contact.Contact; +import org.mxchange.jcore.model.contact.Contact; /** * An interface for application clients diff --git a/src/org/mxchange/jcore/contact/BaseContact.java b/src/org/mxchange/jcore/model/contact/BaseContact.java similarity index 99% rename from src/org/mxchange/jcore/contact/BaseContact.java rename to src/org/mxchange/jcore/model/contact/BaseContact.java index c07b89b..2202b00 100644 --- a/src/org/mxchange/jcore/contact/BaseContact.java +++ b/src/org/mxchange/jcore/model/contact/BaseContact.java @@ -14,13 +14,13 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -package org.mxchange.jcore.contact; +package org.mxchange.jcore.model.contact; import java.text.MessageFormat; import java.util.Objects; import org.mxchange.jcore.BaseFrameworkSystem; import org.mxchange.jcore.client.Client; -import org.mxchange.jcore.contact.gender.Gender; +import org.mxchange.jcore.model.contact.gender.Gender; /** * A general contact class which should only be extended. diff --git a/src/org/mxchange/jcore/contact/Contact.java b/src/org/mxchange/jcore/model/contact/Contact.java similarity index 98% rename from src/org/mxchange/jcore/contact/Contact.java rename to src/org/mxchange/jcore/model/contact/Contact.java index 8e59943..2fbc3a0 100644 --- a/src/org/mxchange/jcore/contact/Contact.java +++ b/src/org/mxchange/jcore/model/contact/Contact.java @@ -14,11 +14,11 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -package org.mxchange.jcore.contact; +package org.mxchange.jcore.model.contact; import org.mxchange.jcore.FrameworkInterface; import org.mxchange.jcore.client.Client; -import org.mxchange.jcore.contact.gender.Gender; +import org.mxchange.jcore.model.contact.gender.Gender; /** * A general contact interface diff --git a/src/org/mxchange/jcore/contact/gender/Gender.java b/src/org/mxchange/jcore/model/contact/gender/Gender.java similarity index 98% rename from src/org/mxchange/jcore/contact/gender/Gender.java rename to src/org/mxchange/jcore/model/contact/gender/Gender.java index 576851d..6e8faaa 100644 --- a/src/org/mxchange/jcore/contact/gender/Gender.java +++ b/src/org/mxchange/jcore/model/contact/gender/Gender.java @@ -14,7 +14,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -package org.mxchange.jcore.contact.gender; +package org.mxchange.jcore.model.contact.gender; import java.text.MessageFormat; diff --git a/src/org/mxchange/jcore/contact/gender/GenderUtils.java b/src/org/mxchange/jcore/model/contact/gender/GenderUtils.java similarity index 97% rename from src/org/mxchange/jcore/contact/gender/GenderUtils.java rename to src/org/mxchange/jcore/model/contact/gender/GenderUtils.java index 1fb0992..c971cba 100644 --- a/src/org/mxchange/jcore/contact/gender/GenderUtils.java +++ b/src/org/mxchange/jcore/model/contact/gender/GenderUtils.java @@ -14,7 +14,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -package org.mxchange.jcore.contact.gender; +package org.mxchange.jcore.model.contact.gender; import java.text.MessageFormat; import java.util.LinkedList; -- 2.39.5