|
|
@ -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; |
|
|
|
} |
|
|
|