]> git.mxchange.org Git - pizzaservice-war.git/commitdiff
Updated jcore + added stub method
authorRoland Haeder <roland@mxchange.org>
Mon, 24 Aug 2015 11:57:53 +0000 (13:57 +0200)
committerRoland Haeder <roland@mxchange.org>
Mon, 24 Aug 2015 11:57:53 +0000 (13:57 +0200)
Signed-off-by:Roland Häder <roland@mxchange.org>

lib/jcore.jar
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

index 4ad2d9d51895e21f4aa9cee85a33acf155bc655c..5a46f43c19df0400e7fd341521152ed3a8d56f59 100644 (file)
Binary files a/lib/jcore.jar and b/lib/jcore.jar differ
index b98caccf8cd2edd9eb4b8d132064f2dec7b7865b..5016dbe4d19ad6e9e47c1e585002b4204d809235 100644 (file)
@@ -101,6 +101,11 @@ public class BasketDatabaseFrontend extends BaseDatabaseFrontend implements Bask
                throw new UnsupportedOperationException("Not supported yet.");
        }
 
+       @Override
+       public Storeable getStoreableAtRow (final int rowIndex) {
+               throw new UnsupportedOperationException("Not supported yet: rowIndex=" + rowIndex);
+       }
+
        @Override
        public Storeable toStoreable (final Map<String, String> map) throws NoSuchMethodException, IllegalAccessException, IllegalArgumentException, InvocationTargetException {
                throw new UnsupportedOperationException("Not supported yet: map=" + map);
index d3b2c7cbb02bc69d3969e4e0be36ef8a5b34c058..873d012c2bb0a0435b1cf99b25ef214675588bb8 100644 (file)
@@ -278,6 +278,11 @@ public class PizzaCategoryDatabaseFrontend extends BaseDatabaseFrontend implemen
                return result;
        }
 
+       @Override
+       public Storeable getStoreableAtRow (final int rowIndex) {
+               throw new UnsupportedOperationException("Not supported yet: rowIndex=" + rowIndex);
+       }
+
        /**
         * Checks if given category title is already used
         *
index 7f3f201031732b44561db377d2f2f7a0d309e5ce..de8a2d6b5d1cc093685c566f25619259e93b9a84 100644 (file)
@@ -267,6 +267,11 @@ public class PizzaProductDatabaseFrontend extends BaseDatabaseFrontend implement
                return result;
        }
 
+       @Override
+       public Storeable getStoreableAtRow (final int rowIndex) {
+               throw new UnsupportedOperationException("Not supported yet: rowIndex=" + rowIndex);
+       }
+
        /**
         * Checks wether the given product title is already used.
         *