]> git.mxchange.org Git - pizzaservice-swing.git/commitdiff
Binded to jshop-core + added it
authorRoland Haeder <roland@mxchange.org>
Fri, 4 Sep 2015 21:41:55 +0000 (23:41 +0200)
committerRoland Haeder <roland@mxchange.org>
Fri, 4 Sep 2015 21:41:55 +0000 (23:41 +0200)
Signed-off-by:Roland Häder <roland@mxchange.org>

lib/jshop-core.jar [new file with mode: 0644]
nbproject/project.properties
src/org/mxchange/pizzaapplication/application/PizzaApplication.java
src/org/mxchange/pizzaapplication/application/PizzaServiceApplication.java

diff --git a/lib/jshop-core.jar b/lib/jshop-core.jar
new file mode 100644 (file)
index 0000000..feda701
Binary files /dev/null and b/lib/jshop-core.jar differ
index 6a34e7b0db695cdd1af3a49f2257e9be4623785e..3a457c9a1c442c635f2556832de8025c4f0d639c 100644 (file)
@@ -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
index df9680525139a1ac0b59e25c3e2772cc36f61613..1a6f28667503a407fc8612e925f3eeaaaa1a5b9f 100644 (file)
@@ -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
index c3e774800d2b3e447d51810b437eebfc4903d1aa..62790de2717c5d4d4548970fe773f9fb1d7be852 100644 (file)
@@ -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