Signed-off-by:Roland Häder <roland@mxchange.org>
* Item amount
* @return the amount
*/
+ @Override
public final Long getAmount () {
return this.amount;
}
* Item amount
* @param amount the amount to set
*/
+ @Override
public final void setAmount (final Long amount) {
this.amount = amount;
}
* @param product Product instance
*/
public BasketItem (final Product product) {
+ // Call default constructor
+ this();
+
// Trace message
this.getLogger().debug(MessageFormat.format("product={0} - CALLED!", product));