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

com.atlassian.clover.instr.aspectj.text.TextRange Maven / Gradle / Ivy

The newest version!
package com.atlassian.clover.instr.aspectj.text;

public class TextRange  {
    private final int myStartOffset;
    private final int myEndOffset;

    public TextRange(int startOffset, int endOffset) {
        this.myStartOffset = startOffset;
        this.myEndOffset = endOffset;
    }

    public final int getStartOffset() {
        return this.myStartOffset;
    }

    public final int getEndOffset() {
        return this.myEndOffset;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy