2528 |
2528 |
2529 @return list of all actions (list of E5Action) |
2529 @return list of all actions (list of E5Action) |
2530 """ |
2530 """ |
2531 return self.actions[:] |
2531 return self.actions[:] |
2532 |
2532 |
2533 def getDebuggerData(self, debuggerId): |
|
2534 """ |
|
2535 Public method to refresh the debugging data of a specific debugger |
|
2536 backend. |
|
2537 |
|
2538 @param debuggerId ID of the debugger backend |
|
2539 @type str |
|
2540 """ |
|
2541 self.debugServer.remoteClientStack(debuggerId) |
|
2542 self.__getThreadList(debuggerId) |
|
2543 self.__getClientVariables(debuggerId) |
|
2544 |
|
2545 def getSelectedDebuggerId(self): |
2533 def getSelectedDebuggerId(self): |
2546 """ |
2534 """ |
2547 Public method to get the currently selected debugger ID. |
2535 Public method to get the currently selected debugger ID. |
2548 |
2536 |
2549 @return selected debugger ID |
2537 @return selected debugger ID |