-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRemoteControl.java
More file actions
41 lines (34 loc) · 1.22 KB
/
RemoteControl.java
File metadata and controls
41 lines (34 loc) · 1.22 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
package CommandPattern.LambdaRemote;
public class RemoteControl {
Command[] onCommands;
Command[] offCommands;
Command undoCommand;
public RemoteControl(){
// create an command array with 7 slots
onCommands = new Command[7];
offCommands = new Command[7];
// Set all commands to No Command because the remote hasn't been programmed yet
for (int i=0; i<7;i++){
onCommands[i] = () -> {};
offCommands[i] = () -> {};
}
}
public void setCommand(int slot, Command onCommand, Command offCommand){
onCommands[slot] = onCommand;
offCommands[slot] = offCommand;
}
public void onButtonWasPushed(int slot){
onCommands[slot].execute();
}
public void offButtonWasPushed(int slot){
offCommands[slot].execute();
}
public String toString(){
StringBuffer stringBuff = new StringBuffer();
stringBuff.append("\n--------Remote Control ---------\n");
for (int i=0; i< onCommands.length; i++){
stringBuff.append("\nSlot " + i + ": " + onCommands[i].getClass().getName() + " " + offCommands[i].getClass().getName());
}
return stringBuff.toString();
}
}