
com.bigcustard.scene2dplus.textarea.command.MoveLeftCommand Maven / Gradle / Ivy
package com.bigcustard.scene2dplus.textarea.command;
import com.bigcustard.scene2dplus.textarea.TextAreaModel;
public class MoveLeftCommand extends AbstractTextAreaCommand {
public MoveLeftCommand(TextAreaModel model) {
super(model);
}
@Override
public void execute() {
model.caret().moveLeft();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy