Files
School/Anul 2/Semestrul 1/Metode avansate de programare/Interpretor/Views/Commands/RunExampleCommand.java
T
2024-08-31 12:07:21 +03:00

17 lines
391 B
Java

package Views.Commands;
import Controllers.Controller;
public class RunExampleCommand extends Command {
private Controller controller;
public RunExampleCommand(String key, String description, Controller controller) {
super(key, description);
this.controller = controller;
}
@Override
public void execute() {
this.controller.allSteps();
}
}