From: Roland Haeder Date: Fri, 4 Sep 2015 21:41:55 +0000 (+0200) Subject: Binded to jshop-core + added it X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=2b2b237022f09686bd6413a140b77e33cb569da8;p=pizzaservice-swing.git Binded to jshop-core + added it Signed-off-by:Roland Häder --- diff --git a/lib/jshop-core.jar b/lib/jshop-core.jar new file mode 100644 index 0000000..feda701 Binary files /dev/null and b/lib/jshop-core.jar differ diff --git a/nbproject/project.properties b/nbproject/project.properties index 6a34e7b..3a457c9 100644 --- a/nbproject/project.properties +++ b/nbproject/project.properties @@ -28,6 +28,7 @@ dist.jar=${dist.dir}/PizzaService-swing.jar dist.javadoc.dir=${dist.dir}/javadoc excludes= file.reference.jcore.jar=lib/jcore.jar +file.reference.jshop-core.jar=lib/jshop-core.jar file.reference.jswingcore.jar=lib/jswingcore.jar file.reference.log4j-api-2.3.jar=lib/log4j-api-2.3.jar file.reference.log4j-core-2.3.jar=lib/log4j-core-2.3.jar @@ -37,7 +38,8 @@ javac.classpath=\ ${file.reference.jcore.jar}:\ ${file.reference.log4j-api-2.3.jar}:\ ${file.reference.log4j-core-2.3.jar}:\ - ${file.reference.jswingcore.jar} + ${file.reference.jswingcore.jar}:\ + ${file.reference.jshop-core.jar} # Space-separated list of extra javac options javac.compilerargs= javac.deprecation=false @@ -78,6 +80,7 @@ run.test.classpath=\ ${build.test.classes.dir} source.encoding=UTF-8 source.reference.jcore.jar=../jcore/src/ +source.reference.jshop-core.jar=../jshop-core/src/ source.reference.jswingcore.jar=../jswingcore/src/ src.dir=src test.src.dir=test diff --git a/src/org/mxchange/pizzaapplication/application/PizzaApplication.java b/src/org/mxchange/pizzaapplication/application/PizzaApplication.java index df96805..1a6f286 100644 --- a/src/org/mxchange/pizzaapplication/application/PizzaApplication.java +++ b/src/org/mxchange/pizzaapplication/application/PizzaApplication.java @@ -22,10 +22,10 @@ import java.sql.SQLException; import java.util.Deque; import java.util.Iterator; import org.mxchange.jcore.application.Application; -import org.mxchange.jshop.category.Category; -import org.mxchange.jshop.exceptions.CategoryTitleAlreadyUsedException; -import org.mxchange.jshop.exceptions.ProductTitleAlreadyUsedException; -import org.mxchange.jshop.product.Product; +import org.mxchange.jshopcore.exceptions.CategoryTitleAlreadyUsedException; +import org.mxchange.jshopcore.exceptions.ProductTitleAlreadyUsedException; +import org.mxchange.jshopcore.model.category.Category; +import org.mxchange.jshopcore.model.product.Product; /** * @@ -153,7 +153,7 @@ public interface PizzaApplication extends Application { * Adds given category data from request to database * * @param category Category instance - * @throws org.mxchange.jshop.exceptions.CategoryTitleAlreadyUsedException The category's title is already used + * @throws org.mxchange.jshopcore.exceptions.CategoryTitleAlreadyUsedException The category's title is already used * @throws java.io.IOException If an IO error occurs * @throws java.sql.SQLException If an SQL error occurs * @throws java.lang.NoSuchMethodException If a method was not found @@ -171,7 +171,7 @@ public interface PizzaApplication extends Application { * @throws java.lang.NoSuchMethodException If a method was not found * @throws java.lang.IllegalAccessException If the method cannot be accessed publicly * @throws java.lang.reflect.InvocationTargetException If something else happens? - * @throws org.mxchange.jshop.exceptions.ProductTitleAlreadyUsedException If the product's title is already used + * @throws org.mxchange.jshopcore.exceptions.ProductTitleAlreadyUsedException If the product's title is already used */ public void doAdminAddProduct (final Product product) throws IOException, SQLException, NoSuchMethodException, IllegalAccessException, InvocationTargetException, ProductTitleAlreadyUsedException; @@ -183,7 +183,7 @@ public interface PizzaApplication extends Application { * @throws java.lang.NoSuchMethodException If a method was not found * @throws java.lang.IllegalAccessException If the method cannot be accessed publicly * @throws java.lang.reflect.InvocationTargetException If something else happens? - * @throws org.mxchange.jshop.exceptions.ProductTitleAlreadyUsedException If the product's title is already used + * @throws org.mxchange.jshopcore.exceptions.ProductTitleAlreadyUsedException If the product's title is already used * @deprecated Old lost code */ @Deprecated @@ -197,7 +197,7 @@ public interface PizzaApplication extends Application { * @throws java.lang.NoSuchMethodException If a method was not found * @throws java.lang.IllegalAccessException If the method cannot be accessed publicly * @throws java.lang.reflect.InvocationTargetException If something else happens? - * @throws org.mxchange.jshop.exceptions.CategoryTitleAlreadyUsedException The category's title is already used + * @throws org.mxchange.jshopcore.exceptions.CategoryTitleAlreadyUsedException The category's title is already used * @deprecated */ @Deprecated diff --git a/src/org/mxchange/pizzaapplication/application/PizzaServiceApplication.java b/src/org/mxchange/pizzaapplication/application/PizzaServiceApplication.java index c3e7748..62790de 100644 --- a/src/org/mxchange/pizzaapplication/application/PizzaServiceApplication.java +++ b/src/org/mxchange/pizzaapplication/application/PizzaServiceApplication.java @@ -23,10 +23,10 @@ import java.text.MessageFormat; import java.util.Deque; import java.util.Iterator; import org.mxchange.jcore.BaseFrameworkSystem; -import org.mxchange.jshop.category.Category; -import org.mxchange.jshop.exceptions.CategoryTitleAlreadyUsedException; -import org.mxchange.jshop.exceptions.ProductTitleAlreadyUsedException; -import org.mxchange.jshop.product.Product; +import org.mxchange.jshopcore.exceptions.CategoryTitleAlreadyUsedException; +import org.mxchange.jshopcore.exceptions.ProductTitleAlreadyUsedException; +import org.mxchange.jshopcore.model.category.Category; +import org.mxchange.jshopcore.model.product.Product; /** * Main application class