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