-
Notifications
You must be signed in to change notification settings - Fork 1
/
command.java
85 lines (67 loc) · 1.58 KB
/
command.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
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
import java.util.ArrayList;
import java.util.List;
interface Command {
void execute();
}
class CookSteakCommand implements Command {
private Chef chef;
public CookSteakCommand(Chef chef) {
this.chef = chef;
}
@Override
public void execute() {
chef.cookSteak();
}
}
class CookChickenChopCommand implements Command {
private Chef chef;
public CookChickenChopCommand(Chef chef) {
this.chef = chef;
}
@Override
public void execute() {
chef.cookChickenChop();
}
}
class CookDessertCommand implements Command {
private Chef chef;
public CookDessertCommand(Chef chef) {
this.chef = chef;
}
@Override
public void execute() {
chef.cookDessert();
}
}
class Chef{
void cookSteak(){
System.out.println("Cooking steak");
}
void cookChickenChop(){
System.out.println("Cooking chicken chop");
}
void cookDessert(){
System.out.println("Cooking dessert");
}
}
class Waiter{
List<Command> list = new ArrayList<>();
void addCommand(Command command){
list.add(command);
}
void executeCommand(){
for(Command cmd : list){
cmd.execute();
}
}
}
public class Main {
public static void main(String[] args) {
Chef chef = new Chef();
Waiter waiter = new Waiter();
waiter.addCommand(new CookSteakCommand(chef));
waiter.addCommand(new CookChickenChopCommand(chef));
waiter.addCommand(new CookDessertCommand(chef));
waiter.executeCommand();
}
}