Datasets:

ArXiv:
License:
denisko's picture
cnanged dir structure and removed features file
3e77472
raw
history blame
363 Bytes
package SimpleSlot;
/**
* Created by Administrator on 2017/6/19.
*/
public class LightOnCommand implements Command
{
Light light;
public LightOnCommand(Light light)
{
this.light = light;
}
@Override
public void execute()
{
light.on();
}
@Override
public void undo()
{
light.off();
}
}