59 """ |
59 """ |
60 Private method to read the project infos. |
60 Private method to read the project infos. |
61 """ |
61 """ |
62 while not self.atEnd(): |
62 while not self.atEnd(): |
63 self.readNext() |
63 self.readNext() |
64 if self.isEndElement() and self.name() == "Task": |
64 if self.isEndElement() and self.name() == "Projects": |
65 break |
65 break |
66 |
66 |
67 if self.isStartElement(): |
67 if self.isStartElement(): |
68 if self.name() == "Project": |
68 if self.name() == "Project": |
69 self.__readProject() |
69 self.__readProject() |