PageRenderTime 107ms CodeModel.GetById 0ms RepoModel.GetById 0ms app.codeStats 0ms

/examples/dynamictable/Person.py

http://pyjamas.googlecode.com/
Python | 15 lines | 14 code | 1 blank | 0 comment | 0 complexity | bd4eae5b4df1aa2c7af2d92161b34403 MD5 | raw file
Possible License(s): LGPL-2.1, Apache-2.0
  1. class Person:
  2. def __init__(self):
  3. self.description = "DESC"
  4. self.name = ""
  5. def getDescription(self):
  6. return self.description
  7. def getName(self):
  8. return self.name
  9. def getSchedule(self, daysFilter):
  10. pass