(self, parent)
| 83 | class TargetProfileEntityEditor(EntityEditor): |
| 84 | |
| 85 | def __init__(self, parent): |
| 86 | EntityEditor.__init__(self, parent=parent, entityName=_t("Target Profile")) |
| 87 | self.SetEditorValidator(TargetProfileNameValidator) |
| 88 | self.mainFrame = gui.mainFrame.MainFrame.getInstance() |
| 89 | |
| 90 | def getEntitiesFromContext(self): |
| 91 | sTR = TargetProfile.getInstance() |
nothing calls this directly
no test coverage detected