Package com.nt.udc.ndk.gui
Interface ConfigRangeIfc
- All Known Implementing Classes:
ConfigRange
public interface ConfigRangeIfc
Used for validating numeric values.
-
Method Summary
Modifier and TypeMethodDescriptionlong
Returns the maximum value for this configuration range.long
Returns the minimum value for this configuration range.void
setMaxValue
(long val) Sets the maximum value for this configuration range.void
setMinValue
(long val) Sets the minimum value for this configuration range.
-
Method Details
-
getMinValue
long getMinValue()Returns the minimum value for this configuration range. -
setMinValue
void setMinValue(long val) Sets the minimum value for this configuration range. -
getMaxValue
long getMaxValue()Returns the maximum value for this configuration range. -
setMaxValue
void setMaxValue(long val) Sets the maximum value for this configuration range.
-