Gets the L{View} class @return: the L{View} class or C{None} if not defined
(self)
| 503 | print("__call__(%s)" % (args if args else None), file=sys.stderr) |
| 504 | |
| 505 | def getClass(self): |
| 506 | """ |
| 507 | Gets the L{View} class |
| 508 | |
| 509 | @return: the L{View} class or C{None} if not defined |
| 510 | """ |
| 511 | |
| 512 | try: |
| 513 | return self.map['class'] |
| 514 | except: |
| 515 | return None |
| 516 | |
| 517 | def getId(self): |
| 518 | """ |
no outgoing calls