forked from pdeitel/JavaHowToProgram11e_EarlyObjects
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDeposit.java
More file actions
executable file
·98 lines (80 loc) · 3.97 KB
/
Deposit.java
File metadata and controls
executable file
·98 lines (80 loc) · 3.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
// Deposit.java
// Represents a deposit ATM transaction
public class Deposit extends Transaction {
private double amount; // amount to deposit
private Keypad keypad; // reference to keypad
private DepositSlot depositSlot; // reference to deposit slot
private final static int CANCELED = 0; // constant for cancel option
// Deposit constructor
public Deposit(int userAccountNumber, Screen atmScreen,
BankDatabase atmBankDatabase, Keypad atmKeypad,
DepositSlot atmDepositSlot) {
// initialize superclass variables
super(userAccountNumber, atmScreen, atmBankDatabase);
// initialize references to keypad and deposit slot
keypad = atmKeypad;
depositSlot = atmDepositSlot;
}
// perform transaction
@Override
public void execute() {
BankDatabase bankDatabase = getBankDatabase(); // get reference
Screen screen = getScreen(); // get reference
amount = promptForDepositAmount(); // get deposit amount from user
// check whether user entered a deposit amount or canceled
if (amount != CANCELED) {
// request deposit envelope containing specified amount
screen.displayMessage(
"\nPlease insert a deposit envelope containing ");
screen.displayDollarAmount(amount);
screen.displayMessageLine(".");
// receive deposit envelope
boolean envelopeReceived = depositSlot.isEnvelopeReceived();
// check whether deposit envelope was received
if (envelopeReceived) {
screen.displayMessageLine("\nYour envelope has been " +
"received.\nNOTE: The money just deposited will not " +
"be available until we verify the amount of any " +
"enclosed cash and your checks clear.");
// credit account to reflect the deposit
bankDatabase.credit(getAccountNumber(), amount);
}
else { // deposit envelope not received
screen.displayMessageLine("\nYou did not insert an " +
"envelope, so the ATM has canceled your transaction.");
}
}
else { // user canceled instead of entering amount
screen.displayMessageLine("\nCanceling transaction...");
}
}
// prompt user to enter a deposit amount in cents
private double promptForDepositAmount() {
Screen screen = getScreen(); // get reference to screen
// display the prompt
screen.displayMessage("\nPlease enter a deposit amount in " +
"CENTS (or 0 to cancel): ");
int input = keypad.getInput(); // receive input of deposit amount
// check whether the user canceled or entered a valid amount
if (input == CANCELED) {
return CANCELED;
}
else {
return (double) input / 100; // return dollar amount
}
}
}
/**************************************************************************
* (C) Copyright 1992-2018 by Deitel & Associates, Inc. and *
* Pearson Education, Inc. All Rights Reserved. *
* *
* DISCLAIMER: The authors and publisher of this book have used their *
* best efforts in preparing the book. These efforts include the *
* development, research, and testing of the theories and programs *
* to determine their effectiveness. The authors and publisher make *
* no warranty of any kind, expressed or implied, with regard to these *
* programs or to the documentation contained in these books. The authors *
* and publisher shall not be liable in any event for incidental or *
* consequential damages in connection with, or arising out of, the *
* furnishing, performance, or use of these programs. *
*************************************************************************/