All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.mmm.base.text.TextPosition Maven / Gradle / Ivy

The newest version!
package io.github.mmm.base.text;

/**
 * Interface for an object that has a position in a text with {@link #getLine() line} and {@link #getColumn() column}
 * number.
 */
public interface TextPosition {

  /**
   * @return the line number starting from {@code 1} for the first line.
   */
  int getLine();

  /**
   * @return the column number starting from {@code 1} for the first character in the {@link #getLine() line}.
   */
  int getColumn();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy