get the type specified in the object's metadata
(self, object)
| 460 | return container.wsdl |
| 461 | |
| 462 | def known(self, object): |
| 463 | """ get the type specified in the object's metadata """ |
| 464 | try: |
| 465 | md = object.__metadata__ |
| 466 | known = md.sxtype |
| 467 | return known |
| 468 | except: |
| 469 | pass |
| 470 | |
| 471 | |
| 472 | class Frame: |