diff options
Diffstat (limited to 'Week16 Webshop/src/com/camilstaps/webshop/payment/IDeal.java')
-rw-r--r-- | Week16 Webshop/src/com/camilstaps/webshop/payment/IDeal.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Week16 Webshop/src/com/camilstaps/webshop/payment/IDeal.java b/Week16 Webshop/src/com/camilstaps/webshop/payment/IDeal.java index 05247f1..72afb84 100644 --- a/Week16 Webshop/src/com/camilstaps/webshop/payment/IDeal.java +++ b/Week16 Webshop/src/com/camilstaps/webshop/payment/IDeal.java @@ -31,7 +31,14 @@ import java.util.Scanner; */ public class IDeal implements PaymentMethod { + /** + * Bank details + */ private String bank, accountNr, pincode; + + /** + * Scanner to get user input from if bank details are missing + */ private final Scanner sc = new Scanner(System.in); /** |