Home | History | Annotate | Download | only in printer

Lines Matching refs:Position

24 import com.github.javaparser.Position;
35 private Position cursor = new Position(1, 0);
56 cursor = Position.pos(cursor.line, cursor.column + indentationLength);
67 * impredictably affect a correct computation of the current {@link #getCursor()} position.
79 cursor = Position.pos(cursor.line, cursor.column + arg.length());
89 * impredictably affect a correct computation of the current {@link #getCursor()} position.
107 cursor = Position.pos(cursor.line + 1, 0);
113 * Return the current cursor position (line, column) in the source printer buffer.
115 * Please notice in order to guarantee a correct computation of the cursor position,
120 * @return the current cursor position (line, column).
122 public Position getCursor() {