-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCommandQueue.java
171 lines (108 loc) · 3.13 KB
/
CommandQueue.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
package com.camnter.basicexercises.design.command;
import java.util.LinkedList;
import java.util.Queue;
/**
* 命令队列
*
* @author CaMnter
*/
class CommandQueue {
public static void main(String[] args) {
RealCommandQueue realCommandQueue = new RealCommandQueue();
realCommandQueue.addCommand(new HelpCommand());
realCommandQueue.addCommand(new MinimizeCommand());
Invoker invoker = new Invoker(realCommandQueue);
invoker.call();
}
/**
* 调用者
*/
public static class Invoker {
private RealCommandQueue realCommandQueue;
public Invoker(RealCommandQueue realCommandQueue) {
this.realCommandQueue = realCommandQueue;
}
public void setRealCommandQueue(RealCommandQueue realCommandQueue) {
this.realCommandQueue = realCommandQueue;
}
public void call() {
this.realCommandQueue.execute();
}
}
/**
* 命令队列
*/
public static class RealCommandQueue {
private Queue<Command> commands = new LinkedList<Command>();
public void addCommand(Command command) {
this.commands.add(command);
}
public void removeCommand(Command command) {
this.commands.remove(command);
}
public void execute() {
while (!this.commands.isEmpty()) {
this.commands.poll().execute();
}
}
}
/**
* 抽象命令类
*/
public static abstract class Command {
public abstract void execute();
}
/**
* 具体命令类 - 帮助
*/
public static class HelpCommand extends Command {
private final HelpHandler helpHandler;
public HelpCommand() {
this.helpHandler = new HelpHandler();
}
@Override
public void execute() {
this.helpHandler.help();
}
private static class HelpHandler {
public void help() {
System.out.println("[HelpHandler] [help]");
}
}
}
/**
* 具体命令类 - 窗口最小化
*/
public static class MinimizeCommand extends Command {
private final WindowHandler windowHandler;
public MinimizeCommand() {
this.windowHandler = new WindowHandler();
}
@Override
public void execute() {
this.windowHandler.minimize();
}
public static class WindowHandler {
public void minimize() {
System.out.println("[WindowHandler] [minimize]");
}
}
}
/**
* 功能按钮
*/
public static class FunctionButton {
private final String name;
private Command command;
public FunctionButton(String name) {
this.name = name;
}
public void setCommand(Command command) {
this.command = command;
}
public void onClick() {
System.out.println("[FunctionButton] [name] = " + this.name);
this.command.execute();
}
}
}