-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDeposit.java
More file actions
102 lines (84 loc) · 3.48 KB
/
Deposit.java
File metadata and controls
102 lines (84 loc) · 3.48 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
99
100
101
102
import java.awt.BorderLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
// 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;
} // end Deposit constructor
// perform transaction
@Override
public void execute()
{
promptForDepositAmount();
}
public void makedeposit(double amount){
BankDatabase bankDatabase = getBankDatabase(); // get reference
Screen screen = getScreen(); // get reference
// get deposit amount from user
// check whether user entered a deposit amount or canceled
if (amount != CANCELED)
{
// request deposit envelope containing specified amount
screen.messageJLabel2.setText( "\nPlease insert a deposit envelope containing " + amount);
// receive deposit envelope
boolean envelopeReceived = depositSlot.isEnvelopeReceived();
// check whether deposit envelope was received
if (envelopeReceived)
{
screen.messageJLabel2.setText("\nYour envelope has been " +
"received.\nNOTE: The money just deposited will not ");
screen.messageJLabel3.setText("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);
} // end if
else // deposit envelope not received
{
screen.messageJLabel2.setText("\nYou did not insert an " +
"envelope, so the ATM has canceled your transaction.");
} // end else
} // end if
else // user canceled instead of entering amount
{
screen.messageJLabel2.setText("\nCanceling transaction...");
} // end else
} // end method execute
// prompt user to enter a deposit amount in cents
private void promptForDepositAmount()
{
Screen screen = getScreen(); // get reference to screen
// display the prompt
screen.CreateDepositGUI(); // receive input of deposit amount
screen.Mainframe.add( keypad.addkeypad(), BorderLayout.CENTER);
Depositcheck check1 = new Depositcheck();
keypad.BEnter.addActionListener( check1 );
screen.Mainframe.revalidate();
// check whether the user cancelled or entered a valid amount
// return dollar amount
} // end else
// end method promptForDepositAmount
private class Depositcheck implements ActionListener
{
public void actionPerformed( ActionEvent e )
{
double input = Integer.parseInt( screen.Inputfield2.getText() );
double amount = input / 100;
makedeposit(amount);
}
}
}