Esempio n. 1
0
 def __init__(self, schema, root, aty):
     """
     @param aty: Array type information.
     @type aty: The value of wsdl:arrayType.
     """
     SXAttribute.__init__(self, schema, root)
     if aty.endswith('[]'):
         self.aty = aty[:-2]
     else:
         self.aty = aty
Esempio n. 2
0
 def __init__(self, schema, root, aty):
     """
     @param aty: Array type information.
     @type aty: The value of wsdl:arrayType.
     """
     SXAttribute.__init__(self, schema, root)
     if aty.endswith('[]'):
         self.aty = aty[:-2]
     else:
         self.aty = aty
Esempio n. 3
0
 def description(self):
     d = SXAttribute.description(self)
     d = d + ('aty', )
     return d
Esempio n. 4
0
 def autoqualified(self):
     aqs = SXAttribute.autoqualified(self)
     aqs.append('aty')
     return aqs
Esempio n. 5
0
 def description(self):
     d = SXAttribute.description(self)
     d = d+('aty',)
     return d
Esempio n. 6
0
 def autoqualified(self):
     aqs = SXAttribute.autoqualified(self)
     aqs.append('aty')
     return aqs