250 |
250 |
251 def reloadAPIs(self): |
251 def reloadAPIs(self): |
252 """ |
252 """ |
253 Public slot to reload the api information. |
253 Public slot to reload the api information. |
254 """ |
254 """ |
255 for api in list(self.__apis.values()): |
255 for api in self.__apis.values(): |
256 api and api.reloadAPIs() |
256 api and api.reloadAPIs() |
257 |
257 |
258 def getAPIs(self, language, projectType="", forPreparation=False): |
258 def getAPIs(self, language, projectType="", forPreparation=False): |
259 """ |
259 """ |
260 Public method to get an APIs object for autocompletion/calltips. |
260 Public method to get an APIs object for autocompletion/calltips. |