(self)
| 88 | self.mainFrame = gui.mainFrame.MainFrame.getInstance() |
| 89 | |
| 90 | def getEntitiesFromContext(self): |
| 91 | sTR = TargetProfile.getInstance() |
| 92 | choices = sorted(sTR.getUserTargetProfileList(), key=lambda p: p.rawName) |
| 93 | return choices |
| 94 | |
| 95 | def DoNew(self, name): |
| 96 | sTR = TargetProfile.getInstance() |
nothing calls this directly
no test coverage detected