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

com.scudata.dm.Region Maven / Gradle / Ivy

Go to download

SPL(Structured Process Language) A programming language specially for structured data computing.

The newest version!
package com.scudata.dm;

/**
 * ???????ڱ?????е???ʼλ?úͽ???λ??
 * @author WangXiaoJun
 *
 */
public class Region {
	public int start; // ??ʼλ?ã???????
	public int end; // ????λ?ã???????
	
	public Region(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