From: Roland Haeder Date: Fri, 25 Sep 2015 08:29:08 +0000 (+0200) Subject: updated jars + fixed method names X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=e4e9b2a2e73959a58adbfb2106be0d5a1c8a4056;p=pizzaservice-swing.git updated jars + fixed method names Signed-off-by:Roland Häder --- diff --git a/lib/jcore.jar b/lib/jcore.jar index 2223e57..a59d0c6 100644 Binary files a/lib/jcore.jar and b/lib/jcore.jar differ diff --git a/lib/jcoreee.jar b/lib/jcoreee.jar index 7b5dcd3..648886a 100644 Binary files a/lib/jcoreee.jar and b/lib/jcoreee.jar differ diff --git a/lib/jshop-core.jar b/lib/jshop-core.jar index df70d7d..95145fb 100644 Binary files a/lib/jshop-core.jar and b/lib/jshop-core.jar differ diff --git a/lib/jshop-ee-lib.jar b/lib/jshop-ee-lib.jar index aee5597..780a05c 100644 Binary files a/lib/jshop-ee-lib.jar and b/lib/jshop-ee-lib.jar differ diff --git a/lib/jswingcore.jar b/lib/jswingcore.jar index f42766c..2c2a3bf 100644 Binary files a/lib/jswingcore.jar and b/lib/jswingcore.jar differ diff --git a/src/org/mxchange/pizzaapplication/application/PizzaServiceApplication.java b/src/org/mxchange/pizzaapplication/application/PizzaServiceApplication.java index 72abe71..e9a42d2 100644 --- a/src/org/mxchange/pizzaapplication/application/PizzaServiceApplication.java +++ b/src/org/mxchange/pizzaapplication/application/PizzaServiceApplication.java @@ -53,7 +53,7 @@ public class PizzaServiceApplication extends BaseFrameworkSystem implements Pizz } // Get all fields - String title = category.getTitle(); + String title = category.getCategoryTitle(); Category parentCategory = category.getParentCategory(); // Debug message @@ -99,10 +99,10 @@ public class PizzaServiceApplication extends BaseFrameworkSystem implements Pizz } // Get title, price and category id - String title = product.getTitle(); - Float price = product.getPrice(); - Long id = product.getId(); - Boolean available = product.getAvailable(); + String title = product.getProductTitle(); + Float price = product.getProductPrice(); + Long id = product.getProductId(); + Boolean available = product.getProductAvailability(); // Debug message this.getLogger().debug(MessageFormat.format("title={0},price={1},id={2},available={3}", title, price, id, available)); //NOI18N @@ -245,7 +245,7 @@ public class PizzaServiceApplication extends BaseFrameworkSystem implements Pizz this.getLogger().trace(MessageFormat.format("category={0} - CALLED!", category)); //NOI18N // Init title - String title = category.getTitle(); + String title = category.getCategoryTitle(); // category must not be null and "title" must be found and non-empty if (null == category) { @@ -280,7 +280,7 @@ public class PizzaServiceApplication extends BaseFrameworkSystem implements Pizz this.getLogger().trace(MessageFormat.format("category={0} - CALLED!", product)); //NOI18N // Init title - String title = product.getTitle(); + String title = product.getProductTitle(); // category must not be null and "title" must be found and non-empty if (null == product) {