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

com.alibaba.qlexpress4.exception.lsp.Range Maven / Gradle / Ivy

package com.alibaba.qlexpress4.exception.lsp;

/**
 * Author: DQinYuan
 */
public class Range {

    private final Position start;

    private final Position end;

    public Range(Position start, Position end) {
        this.start = start;
        this.end = end;
    }

    public Position getStart() {
        return start;
    }

    public Position getEnd() {
        return end;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy