(self, index)
| 89 | return len(self.itemList) |
| 90 | |
| 91 | def itemAt(self, index): |
| 92 | if index >= 0 and index < len(self.itemList): |
| 93 | return self.itemList[index] |
| 94 | |
| 95 | return None |
| 96 | |
| 97 | def takeAt(self, index): |
| 98 | if index >= 0 and index < len(self.itemList): |
no outgoing calls
no test coverage detected