GUIConsoleCommand.java
package it.fulminazzo.yagl.action.command;
import it.fulminazzo.yagl.action.GUIAction;
import it.fulminazzo.yagl.gui.GUI;
import it.fulminazzo.yagl.viewer.Viewer;
import org.jetbrains.annotations.NotNull;
/**
* An implementation of {@link GUIAction} that forces the execution of
* the given command upon {@link #execute(Viewer, GUI)} from the console.
*/
public final class GUIConsoleCommand extends CommandAction implements GUIAction {
/**
* Instantiates a new GUIConsoleCommand.
*
* @param command the command
*/
public GUIConsoleCommand(@NotNull String command) {
super(command);
}
@Override
public void execute(@NotNull Viewer viewer, @NotNull GUI gui) {
viewer.consoleExecuteCommand(this.command);
}
}