From: Roland Haeder Date: Fri, 28 Aug 2015 10:12:53 +0000 (+0200) Subject: More tpyos fixed ... ;-) + updated jcore.jar X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=3969d6c6c59aacbcac99b04cbe3a5b1da74c3cf1;p=pizzaservice-war.git More tpyos fixed ... ;-) + updated jcore.jar Signed-off-by:Roland Häder --- diff --git a/lib/jcore.jar b/lib/jcore.jar index 1e78b3da..adc5c6d6 100644 Binary files a/lib/jcore.jar and b/lib/jcore.jar differ diff --git a/src/java/org/mxchange/pizzaapplication/category/BaseCategory.java b/src/java/org/mxchange/pizzaapplication/category/BaseCategory.java index 89978d6d..337504bd 100644 --- a/src/java/org/mxchange/pizzaapplication/category/BaseCategory.java +++ b/src/java/org/mxchange/pizzaapplication/category/BaseCategory.java @@ -168,7 +168,7 @@ public class BaseCategory extends BaseFrameworkSystem implements Category { this.getLogger().trace(MessageFormat.format("columnName={0} - CALLED!", columnName)); //NOI18N // Call super method - Object value = this.getValueInStoreableFromColumn(this, "BaseCategory", columnName); //NOI18N + Object value = this.getValueInStorableFromColumn(this, "BaseCategory", columnName); //NOI18N // Trace message this.getLogger().trace(MessageFormat.format("value={0} - EXIT!", value)); //NOI18N @@ -183,7 +183,7 @@ public class BaseCategory extends BaseFrameworkSystem implements Category { this.getLogger().trace(MessageFormat.format("columnName={0},value={1} - CALLED!", columnName, value)); //NOI18N // Call super method - this.setValueInStoreableFromColumn(this, "BaseCategory", columnName, value); //NOI18N + this.setValueInStorableFromColumn(this, "BaseCategory", columnName, value); //NOI18N // Trace message this.getLogger().trace("EXIT!"); //NOI18N diff --git a/src/java/org/mxchange/pizzaapplication/category/Category.java b/src/java/org/mxchange/pizzaapplication/category/Category.java index c7248f53..d04f2ec1 100644 --- a/src/java/org/mxchange/pizzaapplication/category/Category.java +++ b/src/java/org/mxchange/pizzaapplication/category/Category.java @@ -17,14 +17,14 @@ package org.mxchange.pizzaapplication.category; import java.io.UnsupportedEncodingException; -import org.mxchange.jcore.database.storage.Storeable; +import org.mxchange.jcore.database.storage.Storable; /** * An interface for categories * * @author Roland Haeder */ -public interface Category extends Storeable, Comparable { +public interface Category extends Storable, Comparable { /** * Id number of category diff --git a/src/java/org/mxchange/pizzaapplication/database/frontend/basket/BasketDatabaseFrontend.java b/src/java/org/mxchange/pizzaapplication/database/frontend/basket/BasketDatabaseFrontend.java index 28d4033b..9b7f6433 100644 --- a/src/java/org/mxchange/pizzaapplication/database/frontend/basket/BasketDatabaseFrontend.java +++ b/src/java/org/mxchange/pizzaapplication/database/frontend/basket/BasketDatabaseFrontend.java @@ -29,7 +29,7 @@ import org.mxchange.jcore.criteria.searchable.SearchCriteria; import org.mxchange.jcore.criteria.searchable.SearchableCriteria; import org.mxchange.jcore.database.frontend.BaseDatabaseFrontend; import org.mxchange.jcore.database.result.Result; -import org.mxchange.jcore.database.storage.Storeable; +import org.mxchange.jcore.database.storage.Storable; import org.mxchange.jcore.exceptions.BadTokenException; import org.mxchange.jcore.exceptions.CorruptedDatabaseFileException; import org.mxchange.jcore.exceptions.UnsupportedDatabaseBackendException; @@ -89,7 +89,7 @@ public class BasketDatabaseFrontend extends BaseDatabaseFrontend implements Bask // Handle this over to the backend // @todo Nothing is done yet! - Result result = this.doInsertDataSet(); + Result result = this.doInsertDataSet(); // Debug message this.getLogger().debug(MessageFormat.format("result={0}", result)); //NOI18N @@ -157,7 +157,7 @@ public class BasketDatabaseFrontend extends BaseDatabaseFrontend implements Bask this.getLogger().trace(MessageFormat.format("product={0},sessionId={1} - CALLED!", product, sessionId)); //NOI18N // Now search for it - Result result = this.getResultFromProduct(product, sessionId); + Result result = this.getResultFromProduct(product, sessionId); // Debug message this.getLogger().debug(MessageFormat.format("result({0})={1}", result.size(), result)); //NOI18N @@ -168,7 +168,7 @@ public class BasketDatabaseFrontend extends BaseDatabaseFrontend implements Bask // Was an entry found? if (result.hasNext()) { // Found one entry - Storeable storeable = result.next(); + Storable storeable = result.next(); // Debug message this.getLogger().debug(MessageFormat.format("storeable={0}", storeable)); //NOI18N @@ -197,7 +197,7 @@ public class BasketDatabaseFrontend extends BaseDatabaseFrontend implements Bask */ @Override - public Storeable getStoreableAtRow (final int rowIndex) { + public Storable getStorableAtRow (final int rowIndex) { throw new UnsupportedOperationException(MessageFormat.format("Not supported yet: rowIndex={0}", rowIndex)); } @@ -220,7 +220,7 @@ public class BasketDatabaseFrontend extends BaseDatabaseFrontend implements Bask criteria.setLimit(1); // Get result back - Result result = this.getBackend().doSelectByCriteria(criteria); + Result result = this.getBackend().doSelectByCriteria(criteria); // Is it empty? boolean isEmpty = (!result.hasNext()); @@ -238,7 +238,7 @@ public class BasketDatabaseFrontend extends BaseDatabaseFrontend implements Bask this.getLogger().trace(MessageFormat.format("item={0},sessionId={1} - CALLED!", item, sessionId)); //NOI18N // Get result back - Result result = this.getResultFromItem(item, sessionId); + Result result = this.getResultFromItem(item, sessionId); // Debug message this.getLogger().debug(MessageFormat.format("result={0}", result)); //NOI18N @@ -251,7 +251,7 @@ public class BasketDatabaseFrontend extends BaseDatabaseFrontend implements Bask } @Override - public Storeable toStoreable (final Map map) throws NoSuchMethodException, IllegalAccessException, IllegalArgumentException, InvocationTargetException { + public Storable toStorable (final Map map) throws NoSuchMethodException, IllegalAccessException, IllegalArgumentException, InvocationTargetException { // Trace message this.getLogger().trace(MessageFormat.format("map={0} - CALLED!", map)); //NOI18N @@ -271,7 +271,7 @@ public class BasketDatabaseFrontend extends BaseDatabaseFrontend implements Bask Iterator> iterator = map.entrySet().iterator(); // Init object instance - Storeable instance = new BasketItem(); + Storable instance = new BasketItem(); // Iterate over all while (iterator.hasNext()) { @@ -306,7 +306,7 @@ public class BasketDatabaseFrontend extends BaseDatabaseFrontend implements Bask * @throws java.lang.IllegalAccessException If the invoked method is not public * @throws java.lang.reflect.InvocationTargetException If anything else happened? */ - private Result getResultFromProduct (final Product product, final String sessionId) throws IOException, SQLException, BadTokenException, CorruptedDatabaseFileException, NoSuchMethodException, IllegalAccessException, InvocationTargetException { + private Result getResultFromProduct (final Product product, final String sessionId) throws IOException, SQLException, BadTokenException, CorruptedDatabaseFileException, NoSuchMethodException, IllegalAccessException, InvocationTargetException { // Trace message this.getLogger().trace(MessageFormat.format("product={0},sessionId={1} - CALLED!", product, sessionId)); //NOI18N @@ -343,7 +343,7 @@ public class BasketDatabaseFrontend extends BaseDatabaseFrontend implements Bask criteria.setLogical(new AndLogicalMatcher()); // Now search for it - Result result = this.getBackend().doSelectByCriteria(criteria); + Result result = this.getBackend().doSelectByCriteria(criteria); // Trace message this.getLogger().debug(MessageFormat.format("result={0} - EXIT!", result)); //NOI18N @@ -366,7 +366,7 @@ public class BasketDatabaseFrontend extends BaseDatabaseFrontend implements Bask * @throws java.lang.IllegalAccessException If the invoked method is not public * @throws java.lang.reflect.InvocationTargetException If anything else happened? */ - private Result getResultFromItem (final AddableBasketItem item, final String sessionId) throws IOException, SQLException, BadTokenException, CorruptedDatabaseFileException, NoSuchMethodException, IllegalAccessException, InvocationTargetException { + private Result getResultFromItem (final AddableBasketItem item, final String sessionId) throws IOException, SQLException, BadTokenException, CorruptedDatabaseFileException, NoSuchMethodException, IllegalAccessException, InvocationTargetException { // Trace message this.getLogger().trace(MessageFormat.format("item={0},sessionId={1} - CALLED!", item, sessionId)); //NOI18N @@ -403,7 +403,7 @@ public class BasketDatabaseFrontend extends BaseDatabaseFrontend implements Bask criteria.setLogical(new AndLogicalMatcher()); // Now search for it - Result result = this.getBackend().doSelectByCriteria(criteria); + Result result = this.getBackend().doSelectByCriteria(criteria); // Trace message this.getLogger().debug(MessageFormat.format("result={0} - EXIT!", result)); //NOI18N @@ -430,10 +430,10 @@ public class BasketDatabaseFrontend extends BaseDatabaseFrontend implements Bask criteria.addCriteria(BasketDatabaseConstants.COLUMN_SESSION_ID, this.getSessionId()); // Now run it on backend - Result result = this.getBackend().doSelectByCriteria(criteria); + Result result = this.getBackend().doSelectByCriteria(criteria); // Now convert it to a map - Set set = result.resultSet(); + Set set = result.resultSet(); // Debug message this.getLogger().debug("set=" + set); @@ -442,7 +442,7 @@ public class BasketDatabaseFrontend extends BaseDatabaseFrontend implements Bask Map map = new LinkedHashMap<>(set.size()); // Add all entries - for (final Storeable storeable : set) { + for (final Storable storeable : set) { // Debug message this.getLogger().debug("storeable=" + storeable); @@ -512,7 +512,7 @@ public class BasketDatabaseFrontend extends BaseDatabaseFrontend implements Bask criteria.setLimit(1); // And run it ... - Result result = this.getBackend().doSelectByCriteria(criteria); + Result result = this.getBackend().doSelectByCriteria(criteria); // Debug message this.getLogger().debug("result=" + result); @@ -527,7 +527,7 @@ public class BasketDatabaseFrontend extends BaseDatabaseFrontend implements Bask } // Get next element - Storeable storeable = result.next(); + Storable storeable = result.next(); // Is it still castable? if (!(storeable instanceof AddableBasketItem)) { diff --git a/src/java/org/mxchange/pizzaapplication/database/frontend/category/PizzaCategoryDatabaseFrontend.java b/src/java/org/mxchange/pizzaapplication/database/frontend/category/PizzaCategoryDatabaseFrontend.java index b0f84d49..0afecbc9 100644 --- a/src/java/org/mxchange/pizzaapplication/database/frontend/category/PizzaCategoryDatabaseFrontend.java +++ b/src/java/org/mxchange/pizzaapplication/database/frontend/category/PizzaCategoryDatabaseFrontend.java @@ -28,7 +28,7 @@ import org.mxchange.jcore.criteria.searchable.SearchableCriteria; import org.mxchange.jcore.database.frontend.BaseDatabaseFrontend; import org.mxchange.jcore.database.result.DatabaseResult; import org.mxchange.jcore.database.result.Result; -import org.mxchange.jcore.database.storage.Storeable; +import org.mxchange.jcore.database.storage.Storable; import org.mxchange.jcore.exceptions.BadTokenException; import org.mxchange.jcore.exceptions.CorruptedDatabaseFileException; import org.mxchange.jcore.exceptions.UnsupportedDatabaseBackendException; @@ -87,7 +87,7 @@ public class PizzaCategoryDatabaseFrontend extends BaseDatabaseFrontend implemen // Handle this over to the backend // @todo Nothing is done yet! - Result result = this.doInsertDataSet(); + Result result = this.doInsertDataSet(); // Debug message this.getLogger().debug(MessageFormat.format("result={0}", result)); //NOI18N @@ -156,7 +156,7 @@ public class PizzaCategoryDatabaseFrontend extends BaseDatabaseFrontend implemen SearchableCriteria criteria = new SearchCriteria(); // Run the query - Result result = this.getBackend().doSelectByCriteria(criteria); + Result result = this.getBackend().doSelectByCriteria(criteria); // Debug message this.getLogger().debug(MessageFormat.format("result={0}", result)); //NOI18N @@ -201,7 +201,7 @@ public class PizzaCategoryDatabaseFrontend extends BaseDatabaseFrontend implemen criteria.setLimit(1); // Run it on backend - Result result = this.getBackend().doSelectByCriteria(criteria); + Result result = this.getBackend().doSelectByCriteria(criteria); // Debug log this.getLogger().debug(MessageFormat.format("result({0})={1}", result, result.size())); //NOI18N @@ -212,7 +212,7 @@ public class PizzaCategoryDatabaseFrontend extends BaseDatabaseFrontend implemen // Is there one entry? if (result.hasNext()) { // Read result from it - Storeable storeable = result.next(); + Storable storeable = result.next(); // Debug message this.getLogger().debug(MessageFormat.format("storeable={0}", storeable)); //NOI18N @@ -245,12 +245,12 @@ public class PizzaCategoryDatabaseFrontend extends BaseDatabaseFrontend implemen * @throws java.sql.SQLException If any SQL error occurs */ @Override - public Result getResultFromSet (final ResultSet resultSet) throws SQLException { + public Result getResultFromSet (final ResultSet resultSet) throws SQLException { // Trace message this.getLogger().trace(MessageFormat.format("resultSet={0} - CALLED!", resultSet)); //NOI18N // Init result instance - Result result = new DatabaseResult(); + Result result = new DatabaseResult(); // Reset result set before first row resultSet.beforeFirst(); @@ -283,7 +283,7 @@ public class PizzaCategoryDatabaseFrontend extends BaseDatabaseFrontend implemen } @Override - public Storeable getStoreableAtRow (final int rowIndex) { + public Storable getStorableAtRow (final int rowIndex) { throw new UnsupportedOperationException("Not supported yet: rowIndex=" + rowIndex); } @@ -308,7 +308,7 @@ public class PizzaCategoryDatabaseFrontend extends BaseDatabaseFrontend implemen criteria.setLimit(1); // Run it on backend - Result result = this.getBackend().doSelectByCriteria(criteria); + Result result = this.getBackend().doSelectByCriteria(criteria); // Debug log this.getLogger().debug(MessageFormat.format("result({0})={1}", result, result.size())); //NOI18N @@ -324,17 +324,17 @@ public class PizzaCategoryDatabaseFrontend extends BaseDatabaseFrontend implemen } /** - * Converts the given map into a Storeable instance, depending on which + * Converts the given map into a Storable instance, depending on which * class implements it. All keys are being interpreted as class * fields/attributes and their respective setters are being searched for. As * this method may fail to find one or access it, this method throws some * exception. * - * @param map Map instance to convert to Storeable - * @return An instance of a Storeable implementation + * @param map Map instance to convert to Storable + * @return An instance of a Storable implementation */ @Override - public Storeable toStoreable (final Map map) throws NoSuchMethodException, IllegalAccessException, IllegalArgumentException, InvocationTargetException { + public Storable toStorable (final Map map) throws NoSuchMethodException, IllegalAccessException, IllegalArgumentException, InvocationTargetException { // Trace message this.getLogger().trace(MessageFormat.format("map={0} - CALLED!", map)); //NOI18N @@ -354,7 +354,7 @@ public class PizzaCategoryDatabaseFrontend extends BaseDatabaseFrontend implemen Iterator> iterator = map.entrySet().iterator(); // Init object instance - Storeable instance = new ProductCategory(); + Storable instance = new ProductCategory(); // Iterate over all while (iterator.hasNext()) { diff --git a/src/java/org/mxchange/pizzaapplication/database/frontend/product/PizzaProductDatabaseFrontend.java b/src/java/org/mxchange/pizzaapplication/database/frontend/product/PizzaProductDatabaseFrontend.java index 4c7dd442..207cfaa6 100644 --- a/src/java/org/mxchange/pizzaapplication/database/frontend/product/PizzaProductDatabaseFrontend.java +++ b/src/java/org/mxchange/pizzaapplication/database/frontend/product/PizzaProductDatabaseFrontend.java @@ -28,7 +28,7 @@ import org.mxchange.jcore.criteria.searchable.SearchableCriteria; import org.mxchange.jcore.database.frontend.BaseDatabaseFrontend; import org.mxchange.jcore.database.result.DatabaseResult; import org.mxchange.jcore.database.result.Result; -import org.mxchange.jcore.database.storage.Storeable; +import org.mxchange.jcore.database.storage.Storable; import org.mxchange.jcore.exceptions.BadTokenException; import org.mxchange.jcore.exceptions.CorruptedDatabaseFileException; import org.mxchange.jcore.exceptions.UnsupportedDatabaseBackendException; @@ -101,7 +101,7 @@ public class PizzaProductDatabaseFrontend extends BaseDatabaseFrontend implement // Handle this over to the backend // @todo Nothing is done yet! - Result result = this.doInsertDataSet(); + Result result = this.doInsertDataSet(); // Debug message this.getLogger().debug(MessageFormat.format("result={0}", result)); //NOI18N @@ -176,7 +176,7 @@ public class PizzaProductDatabaseFrontend extends BaseDatabaseFrontend implement SearchableCriteria criteria = new SearchCriteria(); // Run the query - Result result = this.getBackend().doSelectByCriteria(criteria); + Result result = this.getBackend().doSelectByCriteria(criteria); // Debug message this.getLogger().debug(MessageFormat.format("result={0}", result)); //NOI18N @@ -204,7 +204,7 @@ public class PizzaProductDatabaseFrontend extends BaseDatabaseFrontend implement criteria.addCriteria(ProductFrontend.COLUMN_AVAILABLE, Boolean.TRUE); // Run the query - Result result = this.getBackend().doSelectByCriteria(criteria); + Result result = this.getBackend().doSelectByCriteria(criteria); // Debug message this.getLogger().debug(MessageFormat.format("result={0}", result)); //NOI18N @@ -233,12 +233,12 @@ public class PizzaProductDatabaseFrontend extends BaseDatabaseFrontend implement * @throws java.sql.SQLException If any SQL error occurs */ @Override - public Result getResultFromSet (final ResultSet resultSet) throws SQLException { + public Result getResultFromSet (final ResultSet resultSet) throws SQLException { // Trace message this.getLogger().trace(MessageFormat.format("resultSet={0} - CALLED!", resultSet)); //NOI18N // Init result instance - Result result = new DatabaseResult(); + Result result = new DatabaseResult(); // Reset result set before first row resultSet.beforeFirst(); @@ -273,7 +273,7 @@ public class PizzaProductDatabaseFrontend extends BaseDatabaseFrontend implement } @Override - public Storeable getStoreableAtRow (final int rowIndex) { + public Storable getStorableAtRow (final int rowIndex) { throw new UnsupportedOperationException("Not supported yet: rowIndex=" + rowIndex); } @@ -302,7 +302,7 @@ public class PizzaProductDatabaseFrontend extends BaseDatabaseFrontend implement criteria.setLimit(1); // Run it on backend - Result result = this.getBackend().doSelectByCriteria(criteria); + Result result = this.getBackend().doSelectByCriteria(criteria); // Debug log this.getLogger().debug(MessageFormat.format("result({0}={1}", result, result.size())); //NOI18N @@ -318,17 +318,17 @@ public class PizzaProductDatabaseFrontend extends BaseDatabaseFrontend implement } /** - * Converts the given map into a Storeable instance, depending on which + * Converts the given map into a Storable instance, depending on which * class implements it. All keys are being interpreted as class * fields/attributes and their respective setters are being searched for. As * this method may fail to find one or access it, this method throws some * exception. * - * @param map Map instance to convert to Storeable - * @return An instance of a Storeable implementation + * @param map Map instance to convert to Storable + * @return An instance of a Storable implementation */ @Override - public Storeable toStoreable (final Map map) throws NoSuchMethodException, IllegalAccessException, IllegalArgumentException, InvocationTargetException { + public Storable toStorable (final Map map) throws NoSuchMethodException, IllegalAccessException, IllegalArgumentException, InvocationTargetException { // Trace message this.getLogger().trace(MessageFormat.format("map={0} - CALLED!", map)); //NOI18N @@ -348,7 +348,7 @@ public class PizzaProductDatabaseFrontend extends BaseDatabaseFrontend implement Iterator> iterator = map.entrySet().iterator(); // Init object instance - Storeable instance = new PizzaProduct(); + Storable instance = new PizzaProduct(); // Iterate over all while (iterator.hasNext()) { @@ -390,7 +390,7 @@ public class PizzaProductDatabaseFrontend extends BaseDatabaseFrontend implement criteria.setLimit(1); // Run it on backend - Result result = this.getBackend().doSelectByCriteria(criteria); + Result result = this.getBackend().doSelectByCriteria(criteria); // Debug log this.getLogger().debug(MessageFormat.format("result({0}={1}", result, result.size())); //NOI18N @@ -401,7 +401,7 @@ public class PizzaProductDatabaseFrontend extends BaseDatabaseFrontend implement // Is there one entry? if (result.hasNext()) { // Get item - Storeable storeable = result.next(); + Storable storeable = result.next(); // Is it Product? if (!(storeable instanceof Product)) { diff --git a/src/java/org/mxchange/pizzaapplication/item/AddableBasketItem.java b/src/java/org/mxchange/pizzaapplication/item/AddableBasketItem.java index a14b710a..53150794 100644 --- a/src/java/org/mxchange/pizzaapplication/item/AddableBasketItem.java +++ b/src/java/org/mxchange/pizzaapplication/item/AddableBasketItem.java @@ -16,14 +16,14 @@ */ package org.mxchange.pizzaapplication.item; -import org.mxchange.jcore.database.storage.Storeable; +import org.mxchange.jcore.database.storage.Storable; /** * An interface for addable basket items * * @author Roland Haeder */ -public interface AddableBasketItem extends Storeable, Comparable { +public interface AddableBasketItem extends Storable, Comparable { /** * Item amount diff --git a/src/java/org/mxchange/pizzaapplication/item/BaseItem.java b/src/java/org/mxchange/pizzaapplication/item/BaseItem.java index 73d512cf..ef12ca83 100644 --- a/src/java/org/mxchange/pizzaapplication/item/BaseItem.java +++ b/src/java/org/mxchange/pizzaapplication/item/BaseItem.java @@ -146,7 +146,7 @@ public class BaseItem extends BaseFrameworkSystem implements AddableBasketItem { this.getLogger().trace(MessageFormat.format("columnName={0} - CALLED!", columnName)); //NOI18N // Call super method - Object value = this.getValueInStoreableFromColumn(this, "BaseItem", columnName); //NOI18N + Object value = this.getValueInStorableFromColumn(this, "BaseItem", columnName); //NOI18N // Trace message this.getLogger().trace(MessageFormat.format("value={0} - EXIT!", value)); //NOI18N @@ -161,7 +161,7 @@ public class BaseItem extends BaseFrameworkSystem implements AddableBasketItem { this.getLogger().trace(MessageFormat.format("columnName={0},value={1} - CALLED!", columnName, value)); //NOI18N // Call super method - this.setValueInStoreableFromColumn(this, "BaseItem", columnName, value); //NOI18N + this.setValueInStorableFromColumn(this, "BaseItem", columnName, value); //NOI18N // Trace message this.getLogger().trace("EXIT!"); //NOI18N diff --git a/src/java/org/mxchange/pizzaapplication/product/BaseProduct.java b/src/java/org/mxchange/pizzaapplication/product/BaseProduct.java index 153dfd8a..47191a06 100644 --- a/src/java/org/mxchange/pizzaapplication/product/BaseProduct.java +++ b/src/java/org/mxchange/pizzaapplication/product/BaseProduct.java @@ -172,7 +172,7 @@ public class BaseProduct extends BaseFrameworkSystem implements Product { this.getLogger().trace(MessageFormat.format("columnName={0} - CALLED!", columnName)); //NOI18N // Call super method - Object value = this.getValueInStoreableFromColumn(this, "BaseProduct", columnName); //NOI18N + Object value = this.getValueInStorableFromColumn(this, "BaseProduct", columnName); //NOI18N // Trace message this.getLogger().trace(MessageFormat.format("value={0} - EXIT!", value)); //NOI18N @@ -187,7 +187,7 @@ public class BaseProduct extends BaseFrameworkSystem implements Product { this.getLogger().trace(MessageFormat.format("columnName={0},value={1} - CALLED!", columnName, value)); //NOI18N // Call super method - this.setValueInStoreableFromColumn(this, "BaseProduct", columnName, value); //NOI18N + this.setValueInStorableFromColumn(this, "BaseProduct", columnName, value); //NOI18N // Trace message this.getLogger().trace("EXIT!"); //NOI18N diff --git a/src/java/org/mxchange/pizzaapplication/product/Product.java b/src/java/org/mxchange/pizzaapplication/product/Product.java index c212df21..ee4620bf 100644 --- a/src/java/org/mxchange/pizzaapplication/product/Product.java +++ b/src/java/org/mxchange/pizzaapplication/product/Product.java @@ -16,14 +16,14 @@ */ package org.mxchange.pizzaapplication.product; -import org.mxchange.jcore.database.storage.Storeable; +import org.mxchange.jcore.database.storage.Storable; /** * An interface for in database storeable products * * @author Roland Haeder */ -public interface Product extends Storeable, Comparable { +public interface Product extends Storable, Comparable { /** * Getter for id number, suitable for form fields. *