Home | History | Annotate | Download | only in criterion

Lines Matching defs:currentValue

46     def currentValue(self):
49 @currentValue.setter
50 def currentValue(self, stringNewVal):
75 for currentValue in valueList:
76 if currentValue in self._allowedValues \
77 and currentValue != self.noValue:
78 self.__currentValues.add(currentValue)
82 currentValue, self.__class__.__name__))
84 def removeValue(self, currentValue):
85 if currentValue in self.__currentValues:
86 self.__currentValues.remove(currentValue)
89 "Value {} is not currently setted.".format(currentValue))