Conditions | 1 |
Total Lines | 22 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 3 |
CRAP Score | 1 |
Changes | 0 |
1 | from kerapu.boom.attribuut.Attribuut import Attribuut |
||
12 | def __init__(self, |
||
13 | attribute_groep_id: int, |
||
14 | attribuut: Attribuut, |
||
15 | 1 | onder_toets_waarde: int, |
|
16 | boven_toets_waarde: int): |
||
17 | """ |
||
18 | Object constructor. |
||
19 | |||
20 | :param int attribute_groep_id: Het ID van deze koppeling. |
||
21 | :param Attribuut attribuut: Het attribuut van deze koppeling. |
||
22 | :param int onder_toets_waarde: De ondergrens. |
||
23 | :param int boven_toets_waarde: De bovengrens. |
||
24 | """ |
||
25 | AttribuutGroepKoppeling.__init__(self, attribute_groep_id, attribuut) |
||
26 | |||
27 | self._onder_toets_waarde: int = onder_toets_waarde |
||
28 | 1 | """ |
|
29 | De ondergrens om deze koppeling the laten vuren. |
||
30 | 1 | """ |
|
31 | |||
32 | self._boven_toets_waarde: int = boven_toets_waarde |
||
33 | """ |
||
34 | De bovengrens om deze koppeling the laten vuren. |
||
51 |