コード例 #1
0
 def __init__(self, maxDigits=None):
     FieldValidatorBase.__init__(self)
     self._attrSpecs = getattr(self, '_attrSpecs', {})
     self._attrSpecs.update({
         'maxDigits': {
             'type': 'int',
             'name': 'maxDigits',
             'native': True
         }
     })
     self.maxDigits = maxDigits
コード例 #2
0
 def __init__(self, range=list()):
     FieldValidatorBase.__init__(self)
     self._attrSpecs = getattr(self, '_attrSpecs', {})
     self._attrSpecs.update({
         'range': {
             'maxOccurs': 'unbounded',
             'type': 'NumericRange',
             'name': 'range',
             'minOccurs': '0',
             'native': False
         }
     })
     self.range = range
コード例 #3
0
 def __init__(self, expression=list()):
     FieldValidatorBase.__init__(self)
     self._attrSpecs = getattr(self, '_attrSpecs', {})
     self._attrSpecs.update({
         'expression': {
             'maxOccurs': 'unbounded',
             'type': 'string',
             'name': 'expression',
             'minOccurs': '0',
             'native': True
         }
     })
     self.expression = expression
コード例 #4
0
 def __init__(self, direction=list()):
     FieldValidatorBase.__init__(self)
     self._attrSpecs = getattr(self, '_attrSpecs', {})
     self._attrSpecs.update({
         'direction': {
             'maxOccurs': 'unbounded',
             'type': 'DateDirection',
             'name': 'direction',
             'minOccurs': '0',
             'native': False
         }
     })
     self.direction = direction
コード例 #5
0
 def __init__(self, minLength=None, maxLength=None):
     FieldValidatorBase.__init__(self)
     self._attrSpecs = getattr(self, '_attrSpecs', {})
     self._attrSpecs.update({
         'minLength': {
             'type': 'int',
             'name': 'minLength',
             'minOccurs': '0',
             'native': True
         },
         'maxLength': {
             'type': 'int',
             'name': 'maxLength',
             'minOccurs': '0',
             'native': True
         }
     })
     self.minLength = minLength
     self.maxLength = maxLength
コード例 #6
0
 def __init__(self):
     FieldValidatorBase.__init__(self)
     self._attrSpecs = getattr(self, '_attrSpecs', {})
     self._attrSpecs.update({})
コード例 #7
0
 def __init__(self):
     FieldValidatorBase.__init__(self)
     self._attrSpecs = getattr(self, '_attrSpecs', {})
     self._attrSpecs.update({})
      
コード例 #8
0
 def __init__(self):
     '''
     Constructor
     
     '''
     FieldValidatorBase.__init__(self)
コード例 #9
0
 def __init__(self, expression=list()):
     FieldValidatorBase.__init__(self)
     self._attrSpecs = getattr(self, '_attrSpecs', {})
     self._attrSpecs.update({'expression': {'maxOccurs': 'unbounded', 'type': 'string', 'name': 'expression', 'minOccurs': '0', 'native': True}})
     self.expression = expression 
コード例 #10
0
 def __init__(self, direction=list()):
     FieldValidatorBase.__init__(self)
     self._attrSpecs = getattr(self, '_attrSpecs', {})
     self._attrSpecs.update({'direction': {'maxOccurs': 'unbounded', 'type': 'DateDirection', 'name': 'direction', 'minOccurs': '0', 'native': False}})
     self.direction = direction 
コード例 #11
0
 def __init__(self, maxDigits=None):
     FieldValidatorBase.__init__(self)
     self._attrSpecs = getattr(self, '_attrSpecs', {})
     self._attrSpecs.update({'maxDigits': {'type': 'int', 'name': 'maxDigits', 'native': True}})
     self.maxDigits = maxDigits 
コード例 #12
0
 def __init__(self):
     '''
     Constructor
     
     '''
     FieldValidatorBase.__init__(self)
コード例 #13
0
 def __init__(self, range=list()):
     FieldValidatorBase.__init__(self)
     self._attrSpecs = getattr(self, '_attrSpecs', {})
     self._attrSpecs.update({'range': {'maxOccurs': 'unbounded', 'type': 'NumericRange', 'name': 'range', 'minOccurs': '0', 'native': False}})
     self.range = range 
コード例 #14
0
 def __init__(self, minLength=None, maxLength=None):
     FieldValidatorBase.__init__(self)
     self._attrSpecs = getattr(self, '_attrSpecs', {})
     self._attrSpecs.update({'minLength': {'type': 'int', 'name': 'minLength', 'minOccurs': '0', 'native': True}, 'maxLength': {'type': 'int', 'name': 'maxLength', 'minOccurs': '0', 'native': True}})
     self.minLength = minLength
     self.maxLength = maxLength