Back to project page MaskedEditText.
The source code is released under:
MIT License
If you think the Android project MaskedEditText listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package br.com.sapereaude.maskedEditText; /*from w w w .j a v a 2 s .c o m*/ public class Range { private int start; private int end; Range() { start = -1; end = -1; } public int getStart() { return start; } public void setStart(int start) { this.start = start; } public int getEnd() { return end; } public void setEnd(int end) { this.end = end; } }