|
ILIAS
release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
|
Class for numeric ranges of questions. More...
Collaboration diagram for assNumericRange:Public Member Functions | |
| __construct ( $lowerlimit=0.0, $upperlimit=0.0, $points=0.0, $order=0) | |
| assNumericRange constructor More... | |
| getLowerLimit () | |
| Get the lower limit. More... | |
| getUpperLimit () | |
| Get the upper limit. More... | |
| getPoints () | |
| Get the points. More... | |
| getOrder () | |
| Get the order of the range. More... | |
| setLowerLimit ($limit) | |
| Set the lower limit. More... | |
| setUpperLimit ($limit) | |
| Set the upper limit. More... | |
| setPoints ($points) | |
| Set the points. More... | |
| setOrder ($order) | |
| Set the order. More... | |
| contains ($value) | |
| Checks for a given value within the range. More... | |
Protected Attributes | |
| $lowerlimit | |
| $upperlimit | |
| $points | |
| $order | |
Class for numeric ranges of questions.
assNumericRange is a class for numeric ranges of questions
Definition at line 20 of file class.assNumericRange.php.
| assNumericRange::__construct | ( | $lowerlimit = 0.0, |
|
$upperlimit = 0.0, |
|||
$points = 0.0, |
|||
$order = 0 |
|||
| ) |
assNumericRange constructor
The constructor takes possible arguments an creates an instance of the assNumericRange object.
| double | $lowerlimit | The lower limit of the range |
| double | $upperlimit | The upper limit of the range |
| double | $points | The number of points given for the correct range |
| integer | $order | A nonnegative value representing a possible display or sort order |
Definition at line 70 of file class.assNumericRange.php.
References $lowerlimit, $order, $points, and $upperlimit.
| assNumericRange::contains | ( | $value | ) |
Checks for a given value within the range.
Checks for a given value within the range
| double | $value | The value to check |
Definition at line 202 of file class.assNumericRange.php.
References $result.
| assNumericRange::getLowerLimit | ( | ) |
Get the lower limit.
Returns the lower limit of the range
Definition at line 87 of file class.assNumericRange.php.
References $lowerlimit.
| assNumericRange::getOrder | ( | ) |
Get the order of the range.
Returns the order of the range
Definition at line 129 of file class.assNumericRange.php.
References $order.
| assNumericRange::getPoints | ( | ) |
Get the points.
Returns the points of the range
Definition at line 115 of file class.assNumericRange.php.
References $points.
| assNumericRange::getUpperLimit | ( | ) |
Get the upper limit.
Returns the upper limit of the range
Definition at line 101 of file class.assNumericRange.php.
References $upperlimit.
| assNumericRange::setLowerLimit | ( | $limit | ) |
Set the lower limit.
Sets the lower limit of the range
| double | $limit | The lower limit |
Definition at line 143 of file class.assNumericRange.php.
| assNumericRange::setOrder | ( | $order | ) |
Set the order.
Sets the order of the range
| integer | $order | The order |
Definition at line 185 of file class.assNumericRange.php.
References $order.
| assNumericRange::setPoints | ( | $points | ) |
Set the points.
Sets the points of the range
| double | $points | The points |
Definition at line 171 of file class.assNumericRange.php.
References $points.
| assNumericRange::setUpperLimit | ( | $limit | ) |
Set the upper limit.
Sets the upper limit of the range
| double | $limit | The upper limit |
Definition at line 157 of file class.assNumericRange.php.
|
protected |
Definition at line 29 of file class.assNumericRange.php.
Referenced by __construct(), and getLowerLimit().
|
protected |
Definition at line 56 of file class.assNumericRange.php.
Referenced by __construct(), getOrder(), and setOrder().
|
protected |
Definition at line 47 of file class.assNumericRange.php.
Referenced by __construct(), getPoints(), and setPoints().
|
protected |
Definition at line 38 of file class.assNumericRange.php.
Referenced by __construct(), and getUpperLimit().