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