def getWorksheetTemplates(self): """Returns a DisplayList with all active worksheet templates :return: DisplayList of worksheet templates (uid, title) :rtype: DisplayList """ brains = self._get_worksheet_templates_brains() return get_display_list(brains)
def getInstruments(self): """Returns a DisplayList with all active Instruments :return: DisplayList of worksheet templates (uid, title) :rtype: DisplayList """ brains = self._get_instruments_brains() return get_display_list(brains)
def getInstruments(self): """ Returns a DisplayList with available Instruments, sorted by title ascending. Only active Instruments are considered :return: DisplayList of worksheet templates (uid, title) :rtype: DisplayList """ brains = self._get_instruments_brains() return get_display_list(brains)