Beispiel #1
0
 def signature(self, schema=None, standalone=True):
     name = create_prefixed_name(self.qname, schema)
     if standalone:
         return '%s(%s)' % (name,
                            self.child.signature(schema, standalone=False))
     else:
         return self.child.signature(schema, standalone=False)
Beispiel #2
0
 def signature(self, schema=None, standalone=True):
     name = create_prefixed_name(self.qname, schema)
     if standalone:
         return '%s(%s)' % (
             name, self.child.signature(schema, standalone=False))
     else:
         return self.child.signature(schema, standalone=False)
Beispiel #3
0
 def get_prefixed_name(self, schema):
     return create_prefixed_name(self.qname, schema)
Beispiel #4
0
 def get_prefixed_name(self, schema):
     return create_prefixed_name(self.qname, schema)