Coverage for lode / models / quantifier.py: 100%

9 statements  

« prev     ^ index     » next       coverage.py v7.13.0, created at 2026-03-25 15:05 +0000

1from .propertyConceptRestriction import PropertyConceptRestriction 

2 

3class Quantifier(PropertyConceptRestriction): 

4 

5 def __init__(self, **kwargs): 

6 super().__init__(**kwargs) 

7 

8 self.has_quantifier_type = None # str[1] 

9 

10 def get_has_quantifier_type(self): 

11 """Restituisce il valore has_quantifier_type""" 

12 return self.has_quantifier_type 

13 

14 def set_has_quantifier_type(self, string): 

15 """Aggiunge una string a has_quantifier_type""" 

16 self.has_quantifier_type = string