
com.atlassian.clover.instr.aspectj.text.TextRange Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clover-aspectj-compiler Show documentation
Show all versions of clover-aspectj-compiler Show documentation
A wrapper for AspectJ compiler which allows code instrumentation using OpenClover.
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