(self, schema, root)
| 373 | """ |
| 374 | |
| 375 | def __init__(self, schema, root): |
| 376 | TypedContent.__init__(self, schema, root) |
| 377 | a = root.get('form') |
| 378 | if a is not None: |
| 379 | self.form_qualified = a == 'qualified' |
| 380 | a = self.root.get('nillable') |
| 381 | if a is not None: |
| 382 | self.nillable = a in ('1', 'true') |
| 383 | self.implany() |
| 384 | |
| 385 | def implany(self): |
| 386 | """ |