diff options
author | Camil Staps | 2015-06-11 16:24:00 +0200 |
---|---|---|
committer | Camil Staps | 2015-06-11 16:26:22 +0200 |
commit | c55c2987d23adc518b642410fca36416d5f80b5f (patch) | |
tree | de527d7a5159925cc679ef181fc274287f0a04dc /Week16 Webshop/src/com/camilstaps/webshop/payment/CreditCard.java | |
parent | UML diagram w16b (diff) |
Wrapping up w16
Diffstat (limited to 'Week16 Webshop/src/com/camilstaps/webshop/payment/CreditCard.java')
-rw-r--r-- | Week16 Webshop/src/com/camilstaps/webshop/payment/CreditCard.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Week16 Webshop/src/com/camilstaps/webshop/payment/CreditCard.java b/Week16 Webshop/src/com/camilstaps/webshop/payment/CreditCard.java index f2d0b31..a4b9fd7 100644 --- a/Week16 Webshop/src/com/camilstaps/webshop/payment/CreditCard.java +++ b/Week16 Webshop/src/com/camilstaps/webshop/payment/CreditCard.java @@ -31,6 +31,9 @@ import java.util.Date; */ public class CreditCard implements PaymentMethod { + /** + * Credit card details + */ private final String cardNr, holder; private final Date expiryDate; |