1 package com.loribel.commons.abstraction;
2
3 /***
4 * Abstraction of a number selector.
5 */
6 public interface GB_NumberSelectorSet
7 extends
8 GB_SelectorSet,
9 GB_NumberSelector
10 {
11 /***
12 * Sets the min value of the interval or the value used as constraint.
13 */
14 void setValue(
15 double a_minValue);
16
17 /***
18 * Sets the max value of interval if needed.
19 */
20 void setValue2(
21 double a_maxValue);
22 }