From: Roland Haeder Date: Wed, 16 Sep 2015 11:25:48 +0000 (+0200) Subject: Continiued: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=314e7f2e2bb9c0857b5ae8bf4bb1ef94599af52e;p=jproduct-core.git Continiued: - added missing annotations - updated jars Signed-off-by:Roland Häder --- diff --git a/lib/jcoreee.jar b/lib/jcoreee.jar index 8a7b9f8..32a615b 100644 Binary files a/lib/jcoreee.jar and b/lib/jcoreee.jar differ diff --git a/src/org/mxchange/jshopcore/wrapper/CheckoutWrapper.java b/src/org/mxchange/jshopcore/wrapper/CheckoutWrapper.java index 2ee6882..7a70470 100644 --- a/src/org/mxchange/jshopcore/wrapper/CheckoutWrapper.java +++ b/src/org/mxchange/jshopcore/wrapper/CheckoutWrapper.java @@ -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 getList () { return this.list; } + @Override public void setList (final List list) { this.list = list; }