Example #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
Example #2
0
 def description(self):
     d = SXAttribute.description(self)
     d = d+('aty',)
     return d
Example #3
0
 def autoqualified(self):
     aqs = SXAttribute.autoqualified(self)
     aqs.append('aty')
     return aqs