]> git.mxchange.org Git - pizzaservice-swing.git/commitdiff
updated jars + fixed method names
authorRoland Haeder <roland@mxchange.org>
Fri, 25 Sep 2015 08:29:08 +0000 (10:29 +0200)
committerRoland Haeder <roland@mxchange.org>
Fri, 25 Sep 2015 12:31:16 +0000 (14:31 +0200)
Signed-off-by:Roland Häder <roland@mxchange.org>

lib/jcore.jar
lib/jcoreee.jar
lib/jshop-core.jar
lib/jshop-ee-lib.jar
lib/jswingcore.jar
src/org/mxchange/pizzaapplication/application/PizzaServiceApplication.java

index 2223e57f31b8a3d8f755f4d75191b1e49172076b..a59d0c6d95b82ca1a27d0f31a2525956e8ba2819 100644 (file)
Binary files a/lib/jcore.jar and b/lib/jcore.jar differ
index 7b5dcd35bc09e8d300d9a88d15fc9ecce1151152..648886a7db3c89adffaf81a8a240feabc2ae530a 100644 (file)
Binary files a/lib/jcoreee.jar and b/lib/jcoreee.jar differ
index df70d7dea2a62f435da72a95346b4f0b1bff546a..95145fbb52578c38bb7fb40734674103bf1fd9b4 100644 (file)
Binary files a/lib/jshop-core.jar and b/lib/jshop-core.jar differ
index aee55970fe4fcad53de5f239dd214a7e1daa9cae..780a05cc5b021339a9863f60c0bee0a9ba6f471d 100644 (file)
Binary files a/lib/jshop-ee-lib.jar and b/lib/jshop-ee-lib.jar differ
index f42766c2b1ddb2b74e704a0be58d522d7076f305..2c2a3bfd0e29397188d46e75eec0682470898910 100644 (file)
Binary files a/lib/jswingcore.jar and b/lib/jswingcore.jar differ
index 72abe7162cf3c2e53de614b1e337aeb41522f560..e9a42d203fffb738607575cf74c8d9ff3fdc8d08 100644 (file)
@@ -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) {