]> git.mxchange.org Git - jproduct-core.git/commitdiff
Continiued:
authorRoland Haeder <roland@mxchange.org>
Wed, 16 Sep 2015 11:25:48 +0000 (13:25 +0200)
committerRoland Haeder <roland@mxchange.org>
Wed, 16 Sep 2015 11:25:48 +0000 (13:25 +0200)
- added missing annotations
- updated jars
Signed-off-by:Roland Häder <roland@mxchange.org>

lib/jcoreee.jar
src/org/mxchange/jshopcore/wrapper/CheckoutWrapper.java

index 8a7b9f8d3fcec07ea962be3621646ac0a093631f..32a615bb007b46294addca4ea2c1ef2ab8f6eaba 100644 (file)
Binary files a/lib/jcoreee.jar and b/lib/jcoreee.jar differ
index 2ee6882cd68d164fe9df7b0fb4daeca6e4e20009..7a70470573c8551d9adbd00065fb41cf9a190caf 100644 (file)
@@ -47,18 +47,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;
        }