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

net.jangaroo.jooc.util.FilePosition Maven / Gradle / Ivy

The newest version!
package net.jangaroo.jooc.util;

public class FilePosition {
  private final int line;
  private final int column;

  public FilePosition(int line, int column) {
    this.line = line;
    this.column = column;
  }

  public int getLine() {
    return this.line;
  }

  public int getColumn() {
    return this.column;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy