()
| 189 | } |
| 190 | |
| 191 | public List<? extends DBGUIExtCmdInfoBase> ping() throws RuntimeDebugClientException { |
| 192 | Request request = this.buildRequest(HttpMethod.POST, this.debugComponentUrl).param("cmd", "pingDebugUIParams").param("dbgui", this.debugServerUuid.toString()); |
| 193 | RDBGPingDebugUIResponse responseContent = this.performRuntimeHttpRequest(request, RDBGPingDebugUIResponse.class); |
| 194 | return (responseContent == null ? Collections.emptyList() : responseContent.getResult()); |
| 195 | } |
| 196 | |
| 197 | public void setLineBreakpoints(Map<BslModuleInformation, List<BslLineBreakpointInformation>> modulesBreakpoints) throws RuntimeDebugClientException { |
| 198 | RDBGSetBreakpointsRequest requestContent = ResponseFactory.eINSTANCE.createRDBGSetBreakpointsRequest(); |
no test coverage detected