/examples/dynamictable/Person.py
http://pyjamas.googlecode.com/ · Python · 15 lines · 10 code · 5 blank · 0 comment · 0 complexity · bd4eae5b4df1aa2c7af2d92161b34403 MD5 · raw file
- class Person:
- def __init__(self):
- self.description = "DESC"
- self.name = ""
-
- def getDescription(self):
- return self.description
- def getName(self):
- return self.name
- def getSchedule(self, daysFilter):
- pass