Example #1
0
 def __init__(self, attr):
     BasicTypeAttr.__init__(self, attr)
     if self.get('Max') is not None:
         self['Max'] = int(self['Max'])
     if self.get('Min') is not None:
         self['Min'] = int(self['Min'])
Example #2
0
	def __init__(self, dict):
		BasicTypeAttr.__init__(self, dict)
		if self.get('Max') is not None:
			self['Max'] = long(self['Max'])
		if self.get('Min') is not None:
			self['Min'] = long(self['Min'])
Example #3
0
 def __init__(self, attr):
     BasicTypeAttr.__init__(self, attr)
     if self.get('Max') is not None:
         self['Max'] = int(self['Max'])
     if self.get('Min') is not None:
         self['Min'] = int(self['Min'])