public interface Range
Modifier and Type | Method and Description |
---|---|
int |
getMax()
Gets the higher value of the range.
|
int |
getMin()
Gets the lower value of the range.
|
java.lang.Object |
getUserData()
Gets the object stored in this object user's data
|
void |
setMax(int max)
Sets the higher value of the range.
|
void |
setMin(int min)
Sets the lower value of the range.
|
void |
setUserData(java.lang.Object data)
Sets the object to store in this object user's data
|
int getMax()
void setMax(int max)
max
- the value to setint getMin()
void setMin(int min)
min
- the value to setvoid setUserData(java.lang.Object data)
data
- the object to storejava.lang.Object getUserData()