-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWaitingForMoney.java
42 lines (36 loc) · 1.09 KB
/
WaitingForMoney.java
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
package behavioral.state;
/**
* ----------
* Step 3
* ----------
* Represents the "WaitingForMoney" state of the vending machine.
*/
class WaitingForMoney implements State {
private final VendingMachine vendingMachine; // Reference to the vending machine
/**
* Constructs the "WaitingForMoney" state.
*
* @param vendingMachine The vending machine this state belongs to
*/
public WaitingForMoney(VendingMachine vendingMachine) {
this.vendingMachine = vendingMachine;
}
@Override
public String getName() {
// Name of the state
return "Waiting for Money";
}
@Override
public void insertMoney() {
System.out.println("Money inserted: Now you can select a product.");
this.vendingMachine.setState(new ProductSelected(this.vendingMachine)); // Transition to "ProductSelected" state
}
@Override
public void selectProduct() {
System.out.println("Please insert money first.");
}
@Override
public void dispenseProduct() {
System.out.println("Please insert money first.");
}
}