Datasets:

ArXiv:
License:
denisko's picture
cnanged dir structure and removed features file
3e77472
raw
history blame
557 Bytes
package SimpleSlot;
/**
* Created by Administrator on 2017/6/19.
*/
public class MacroOnCommand implements Command
{
private Command[] commands;
public MacroOnCommand(Command[] commands)
{
this.commands = commands;
}
@Override
public void execute()
{
for (int i = 0; i < commands.length; i++)
{
commands[i].execute();
}
}
@Override
public void undo()
{
for (int i = 0; i < commands.length; i++)
{
commands[i].undo();
}
}
}