]> git.mxchange.org Git - jcustomer-core.git/blobdiff - src/org/mxchange/jshopcore/wrapper/CheckoutWrapper.java
auto-formatted project + updated jars
[jcustomer-core.git] / src / org / mxchange / jshopcore / wrapper / CheckoutWrapper.java
index 2ee6882cd68d164fe9df7b0fb4daeca6e4e20009..3b1a9e2085f8b4050e6ea4eb561dfdd66c8a26ac 100644 (file)
@@ -22,10 +22,11 @@ import org.mxchange.jshopcore.model.customer.Customer;
 
 /**
  * A wrapper for checkouts (customer, ordered items)
- *
+ * <p>
  * @author Roland Haeder
  */
 public class CheckoutWrapper implements WrapableCheckout {
+
        /**
         * Serial number
         */
@@ -47,18 +48,22 @@ public class CheckoutWrapper implements WrapableCheckout {
        public CheckoutWrapper () {
        }
 
+       @Override
        public Customer getCustomer () {
                return this.customer;
        }
 
+       @Override
        public void setCustomer (final Customer customer) {
                this.customer = customer;
        }
 
+       @Override
        public List<AddableBasketItem> getList () {
                return this.list;
        }
 
+       @Override
        public void setList (final List<AddableBasketItem> list) {
                this.list = list;
        }