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

org.treesitter.TSPoint Maven / Gradle / Ivy

There is a newer version: 0.24.4
Show newest version
package org.treesitter;

public class TSPoint {
    private int row;
    private int column;

    public TSPoint(int row, int column) {
        this.row = row;
        this.column = column;
    }

    public int getRow() {
        return row;
    }

    public int getColumn() {
        return column;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy