/examples/dynamictable/Student.py
http://pyjamas.googlecode.com/ · Python · 13 lines · 9 code · 4 blank · 0 comment · 0 complexity · 5aa7797bec421bb7403720b242ca30ea MD5 · raw file
- from Schedule import Schedule
- from Person import Person
- class Student(Person):
- def __init__(self):
- self.classSchedule = Schedule()
- def getSchedule(self, daysFilter):
- return self.classSchedule.getDescription(daysFilter)
-
- def getClassSchedule(self):
- return self.classSchedule