From f5df2846c61ff9c42b86938e73082a9df5f91f84 Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Thu, 13 Apr 2017 22:14:19 +0200 Subject: [PATCH] moved to proper package, they are model classes MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- .../mxchange/jfinancials/{ => model}/receipt/Billable.java | 2 +- .../mxchange/jfinancials/{ => model}/receipt/Receipt.java | 2 +- .../{ => model}/receipt/entry/BillableReceiptEntry.java | 4 ++-- .../jfinancials/{ => model}/receipt/entry/ReceiptEntry.java | 6 +++--- 4 files changed, 7 insertions(+), 7 deletions(-) rename src/org/mxchange/jfinancials/{ => model}/receipt/Billable.java (98%) rename src/org/mxchange/jfinancials/{ => model}/receipt/Receipt.java (98%) rename src/org/mxchange/jfinancials/{ => model}/receipt/entry/BillableReceiptEntry.java (96%) rename src/org/mxchange/jfinancials/{ => model}/receipt/entry/ReceiptEntry.java (96%) diff --git a/src/org/mxchange/jfinancials/receipt/Billable.java b/src/org/mxchange/jfinancials/model/receipt/Billable.java similarity index 98% rename from src/org/mxchange/jfinancials/receipt/Billable.java rename to src/org/mxchange/jfinancials/model/receipt/Billable.java index 2b1d391..0e35e18 100644 --- a/src/org/mxchange/jfinancials/receipt/Billable.java +++ b/src/org/mxchange/jfinancials/model/receipt/Billable.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.jfinancials.receipt; +package org.mxchange.jfinancials.model.receipt; import java.io.Serializable; import java.util.Calendar; diff --git a/src/org/mxchange/jfinancials/receipt/Receipt.java b/src/org/mxchange/jfinancials/model/receipt/Receipt.java similarity index 98% rename from src/org/mxchange/jfinancials/receipt/Receipt.java rename to src/org/mxchange/jfinancials/model/receipt/Receipt.java index 337ac29..1d334a8 100644 --- a/src/org/mxchange/jfinancials/receipt/Receipt.java +++ b/src/org/mxchange/jfinancials/model/receipt/Receipt.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.jfinancials.receipt; +package org.mxchange.jfinancials.model.receipt; import java.util.Calendar; import javax.persistence.Basic; diff --git a/src/org/mxchange/jfinancials/receipt/entry/BillableReceiptEntry.java b/src/org/mxchange/jfinancials/model/receipt/entry/BillableReceiptEntry.java similarity index 96% rename from src/org/mxchange/jfinancials/receipt/entry/BillableReceiptEntry.java rename to src/org/mxchange/jfinancials/model/receipt/entry/BillableReceiptEntry.java index 559119f..3d6dc5a 100644 --- a/src/org/mxchange/jfinancials/receipt/entry/BillableReceiptEntry.java +++ b/src/org/mxchange/jfinancials/model/receipt/entry/BillableReceiptEntry.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.jfinancials.receipt.entry; +package org.mxchange.jfinancials.model.receipt.entry; import java.io.Serializable; import java.util.Calendar; -import org.mxchange.jfinancials.receipt.Billable; +import org.mxchange.jfinancials.model.receipt.Billable; import org.mxchange.jshopcore.model.product.Product; /** diff --git a/src/org/mxchange/jfinancials/receipt/entry/ReceiptEntry.java b/src/org/mxchange/jfinancials/model/receipt/entry/ReceiptEntry.java similarity index 96% rename from src/org/mxchange/jfinancials/receipt/entry/ReceiptEntry.java rename to src/org/mxchange/jfinancials/model/receipt/entry/ReceiptEntry.java index 233099a..c744b1e 100644 --- a/src/org/mxchange/jfinancials/receipt/entry/ReceiptEntry.java +++ b/src/org/mxchange/jfinancials/model/receipt/entry/ReceiptEntry.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.jfinancials.receipt.entry; +package org.mxchange.jfinancials.model.receipt.entry; import java.util.Calendar; import javax.persistence.Basic; @@ -31,8 +31,8 @@ import javax.persistence.Table; import javax.persistence.Temporal; import javax.persistence.TemporalType; import javax.persistence.Transient; -import org.mxchange.jfinancials.receipt.Billable; -import org.mxchange.jfinancials.receipt.Receipt; +import org.mxchange.jfinancials.model.receipt.Billable; +import org.mxchange.jfinancials.model.receipt.Receipt; import org.mxchange.jshopcore.model.product.GenericProduct; import org.mxchange.jshopcore.model.product.Product; -- 2.39.5