Datasets:
ArXiv:
License:
Stack-Repo / data /test /Hugo-Gao /Design-pattern /CommandPattern /src /SimpleSlot /LightOffCommand.java
| package SimpleSlot; | |
| /** | |
| * Created by Administrator on 2017/6/19. | |
| */ | |
| public class LightOffCommand implements Command | |
| { | |
| Light light; | |
| public LightOffCommand(Light light) | |
| { | |
| this.light = light; | |
| } | |
| public void execute() | |
| { | |
| light.off(); | |
| } | |
| public void undo() | |
| { | |
| light.on(); | |
| } | |
| } | |