com.scudata.dm.Region Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of esproc Show documentation
Show all versions of esproc Show documentation
SPL(Structured Process Language) A programming language specially for structured data computing.
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