diff --git a/projjpn/src/main/java/de/hs_fulda/ciip/projjpn/Item.java b/projjpn/src/main/java/de/hs_fulda/ciip/projjpn/Item.java index 4f51d78..1be3965 100644 --- a/projjpn/src/main/java/de/hs_fulda/ciip/projjpn/Item.java +++ b/projjpn/src/main/java/de/hs_fulda/ciip/projjpn/Item.java @@ -62,14 +62,26 @@ public class Item { this.price = newPrice; } + /** + * + * @return Current Price of the Item. + */ public float getCurrentPrice() { return price; } + /** + * + * @return Current public Title of this Item. + */ public String getTitel() { return this.productTitle; } + /** + * + * @return Current public Description of this Item. + */ public String getDescription() { return this.description; }