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

gherkin.ast.Location Maven / Gradle / Ivy

The newest version!
package gherkin.ast;

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

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

    public int getLine() {
        return line;
    }

    public int getColumn() {
        return column;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy