]> git.mxchange.org Git - pizzaservice-war.git/commitdiff
More tpyos fixed ... ;-) + updated jcore.jar
authorRoland Haeder <roland@mxchange.org>
Fri, 28 Aug 2015 10:12:53 +0000 (12:12 +0200)
committerRoland Haeder <roland@mxchange.org>
Fri, 28 Aug 2015 10:12:53 +0000 (12:12 +0200)
Signed-off-by:Roland Häder <roland@mxchange.org>

lib/jcore.jar
src/java/org/mxchange/pizzaapplication/category/BaseCategory.java
src/java/org/mxchange/pizzaapplication/category/Category.java
src/java/org/mxchange/pizzaapplication/database/frontend/basket/BasketDatabaseFrontend.java
src/java/org/mxchange/pizzaapplication/database/frontend/category/PizzaCategoryDatabaseFrontend.java
src/java/org/mxchange/pizzaapplication/database/frontend/product/PizzaProductDatabaseFrontend.java
src/java/org/mxchange/pizzaapplication/item/AddableBasketItem.java
src/java/org/mxchange/pizzaapplication/item/BaseItem.java
src/java/org/mxchange/pizzaapplication/product/BaseProduct.java
src/java/org/mxchange/pizzaapplication/product/Product.java

index 1e78b3da00b81f1c3f568bd24878b282168385a0..adc5c6d62b12352d537c21cf4551a8411d51a901 100644 (file)
Binary files a/lib/jcore.jar and b/lib/jcore.jar differ
index 89978d6d3857e108f642a8ddd4fabc3bcc6f31f2..337504bd12670c0bd7d44cd4bd00a567e025dd36 100644 (file)
@@ -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
index c7248f534c46e91029670b00305b6769a88f5564..d04f2ec1e890cbf98c68e4001744c8f22dbebc37 100644 (file)
 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<Category> {
+public interface Category extends Storable, Comparable<Category> {
 
        /**
         * Id number of category
index 28d4033bb0cd74907ee536c2999960914d73b010..9b7f6433daae4a038608f8d8329d482c94ac7887 100644 (file)
@@ -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<? extends Storeable> result = this.doInsertDataSet();
+               Result<? extends Storable> 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<? extends Storeable> result = this.getResultFromProduct(product, sessionId);
+               Result<? extends Storable> 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<? extends Storeable> result = this.getBackend().doSelectByCriteria(criteria);
+               Result<? extends Storable> 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<? extends Storeable> result = this.getResultFromItem(item, sessionId);
+               Result<? extends Storable> 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<String, String> map) throws NoSuchMethodException, IllegalAccessException, IllegalArgumentException, InvocationTargetException {
+       public Storable toStorable (final Map<String, String> 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<Map.Entry<String, String>> 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<? extends Storeable> getResultFromProduct (final Product product, final String sessionId) throws IOException, SQLException, BadTokenException, CorruptedDatabaseFileException, NoSuchMethodException, IllegalAccessException, InvocationTargetException {
+       private Result<? extends Storable> 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<? extends Storeable> result = this.getBackend().doSelectByCriteria(criteria);
+               Result<? extends Storable> 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<? extends Storeable> getResultFromItem (final AddableBasketItem item, final String sessionId) throws IOException, SQLException, BadTokenException, CorruptedDatabaseFileException, NoSuchMethodException, IllegalAccessException, InvocationTargetException {
+       private Result<? extends Storable> 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<? extends Storeable> result = this.getBackend().doSelectByCriteria(criteria);
+               Result<? extends Storable> 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<? extends Storeable> result = this.getBackend().doSelectByCriteria(criteria);
+               Result<? extends Storable> result = this.getBackend().doSelectByCriteria(criteria);
 
                // Now convert it to a map
-               Set<? extends Storeable> set = result.resultSet();
+               Set<? extends Storable> set = result.resultSet();
 
                // Debug message
                this.getLogger().debug("set=" + set);
@@ -442,7 +442,7 @@ public class BasketDatabaseFrontend extends BaseDatabaseFrontend implements Bask
                Map<Long, AddableBasketItem> 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<? extends Storeable> result = this.getBackend().doSelectByCriteria(criteria);
+               Result<? extends Storable> 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)) {
index b0f84d49623eaa48b515e30c247de779c4790798..0afecbc9e18cea07e7e36c74ba759ac716e3e747 100644 (file)
@@ -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<? extends Storeable> result = this.doInsertDataSet();
+               Result<? extends Storable> 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<? extends Storeable> result = this.getBackend().doSelectByCriteria(criteria);
+               Result<? extends Storable> 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<? extends Storeable> result = this.getBackend().doSelectByCriteria(criteria);
+               Result<? extends Storable> 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<? extends Storeable> getResultFromSet (final ResultSet resultSet) throws SQLException {
+       public Result<? extends Storable> getResultFromSet (final ResultSet resultSet) throws SQLException {
                // Trace message
                this.getLogger().trace(MessageFormat.format("resultSet={0} - CALLED!", resultSet)); //NOI18N
 
                // Init result instance
-               Result<? extends Storeable> result = new DatabaseResult();
+               Result<? extends Storable> 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<? extends Storeable> result = this.getBackend().doSelectByCriteria(criteria);
+               Result<? extends Storable> 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<String, String> map) throws NoSuchMethodException, IllegalAccessException, IllegalArgumentException, InvocationTargetException {
+       public Storable toStorable (final Map<String, String> 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<Map.Entry<String, String>> iterator = map.entrySet().iterator();
 
                // Init object instance
-               Storeable instance = new ProductCategory();
+               Storable instance = new ProductCategory();
 
                // Iterate over all
                while (iterator.hasNext()) {
index 4c7dd442e8ad6529af235dbfe7d13864852da35c..207cfaa637704b766814a44c13952e713a52a169 100644 (file)
@@ -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<? extends Storeable> result = this.doInsertDataSet();
+               Result<? extends Storable> 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<? extends Storeable> result = this.getBackend().doSelectByCriteria(criteria);
+               Result<? extends Storable> 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<? extends Storeable> result = this.getBackend().doSelectByCriteria(criteria);
+               Result<? extends Storable> 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<? extends Storeable> getResultFromSet (final ResultSet resultSet) throws SQLException {
+       public Result<? extends Storable> getResultFromSet (final ResultSet resultSet) throws SQLException {
                // Trace message
                this.getLogger().trace(MessageFormat.format("resultSet={0} - CALLED!", resultSet)); //NOI18N
 
                // Init result instance
-               Result<? extends Storeable> result = new DatabaseResult();
+               Result<? extends Storable> 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<? extends Storeable> result = this.getBackend().doSelectByCriteria(criteria);
+               Result<? extends Storable> 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<String, String> map) throws NoSuchMethodException, IllegalAccessException, IllegalArgumentException, InvocationTargetException {
+       public Storable toStorable (final Map<String, String> 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<Map.Entry<String, String>> 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<? extends Storeable> result = this.getBackend().doSelectByCriteria(criteria);
+               Result<? extends Storable> 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)) {
index a14b710afcc29415d6ef356b606f9413a8021881..531507944177eb56b9ebddc726f8be94324ae222 100644 (file)
  */
 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<AddableBasketItem> {
+public interface AddableBasketItem extends Storable, Comparable<AddableBasketItem> {
 
        /**
         * Item amount
index 73d512cf004b72b75ba8c8e72689ad09d38cfd22..ef12ca83e2696026ce73328b2f76601349d68282 100644 (file)
@@ -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
index 153dfd8a015fb410f0c586f85777a263d414896d..47191a068488e270c7cfed4cf7260c622a0d20e7 100644 (file)
@@ -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
index c212df21d79a57b179472ca10bd16589376ea7f0..ee4620bf1e3208b72d65f34508cb30490b69de07 100644 (file)
  */
 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<Product> {
+public interface Product extends Storable, Comparable<Product> {
        /**
         * Getter for id number, suitable for form fields.
         *