]> git.mxchange.org Git - pizzaservice-war.git/commitdiff
Use Float, not float
authorRoland Haeder <roland@mxchange.org>
Fri, 14 Aug 2015 22:50:46 +0000 (00:50 +0200)
committerRoland Haeder <roland@mxchange.org>
Fri, 14 Aug 2015 22:50:46 +0000 (00:50 +0200)
Signed-off-by:Roland Häder <roland@mxchange.org>

src/java/org/mxchange/pizzaapplication/product/BaseProduct.java
src/java/org/mxchange/pizzaapplication/product/Product.java

index 0b9d974009b46ba6f1c1688b8a843b49beffad0f..60f3623be75207829a68a49cb295be3dddcd2632 100644 (file)
@@ -33,7 +33,7 @@ public class BaseProduct extends BaseFrameworkSystem implements Product {
        /**
         * Price of product
         */
-       private float price;
+       private Float price;
 
        /**
         * Title of product
@@ -103,7 +103,7 @@ public class BaseProduct extends BaseFrameworkSystem implements Product {
         * @return the price
         */
        @Override
-       public final float getPrice () {
+       public final Float getPrice () {
                return this.price;
        }
 
@@ -112,7 +112,7 @@ public class BaseProduct extends BaseFrameworkSystem implements Product {
         * @param price the price to set
         */
        @Override
-       public final void setPrice (final float price) {
+       public final void setPrice (final Float price) {
                this.price = price;
        }
 
index 8f55eab32b9af285d96ea5113f9ee3b1a6ed87f7..686f4e1ffddc2c3df8f471cd0d3f7259be3ae528 100644 (file)
@@ -55,13 +55,13 @@ public interface Product extends Storeable, Comparable<Product> {
         * 
         * @return Single price of product
         */
-       public float getPrice ();
+       public Float getPrice ();
 
        /**
         * Price of product
         * @param price the price to set
         */
-       public void setPrice (final float price);
+       public void setPrice (final Float price);
 
        /**
         * Getter for product category