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
${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
${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
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;
/**
*
* 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
* @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;
* @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
* @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
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