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

refdiff.core.cst.TokenPosition Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package refdiff.core.cst;

public class TokenPosition {
	private final int start;
	private final int end;
	
	public TokenPosition(int start, int end) {
		this.start = start;
		this.end = end;
	}
	
	public int getStart() {
		return start;
	}
	
	public int getEnd() {
		return end;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy