()
| 124 | } |
| 125 | |
| 126 | public boolean disconnect() throws RuntimeDebugClientException { |
| 127 | RDBGDetachDebugUIRequest requestContent = ResponseFactory.eINSTANCE.createRDBGDetachDebugUIRequest(); |
| 128 | Request request = this.buildRequest(HttpMethod.POST, this.debugComponentUrl).param("cmd", "detachDebugUI"); |
| 129 | RDBGDetachDebugUIResponse responseContent = AbstractDebugClient.performRuntimeHttpRequest(this, request, this.initRequest(requestContent), RDBGDetachDebugUIResponse.class); |
| 130 | assert responseContent != null; |
| 131 | return responseContent.isResult(); |
| 132 | } |
| 133 | |
| 134 | public void initSettings(boolean suspend) throws RuntimeDebugClientException { |
| 135 | RDBGSetInitialDebugSettingsRequest requestContent = ResponseFactory.eINSTANCE.createRDBGSetInitialDebugSettingsRequest(); |
no test coverage detected