(boolean suspend)
| 132 | } |
| 133 | |
| 134 | public void initSettings(boolean suspend) throws RuntimeDebugClientException { |
| 135 | RDBGSetInitialDebugSettingsRequest requestContent = ResponseFactory.eINSTANCE.createRDBGSetInitialDebugSettingsRequest(); |
| 136 | if (suspend) { |
| 137 | HTTPServerInitialDebugSettingsData settingsData = ResponseFactory.eINSTANCE.createHTTPServerInitialDebugSettingsData(); |
| 138 | requestContent.setData(settingsData); |
| 139 | } |
| 140 | |
| 141 | Request request = this.buildRequest(HttpMethod.POST, this.debugComponentUrl).param("cmd", "initSettings"); |
| 142 | this.performRuntimeHttpRequest(request, this.initRequest(requestContent)); |
| 143 | } |
| 144 | |
| 145 | public void attachRuntimeDebugTargets(Collection<UUID> debugTarget) throws RuntimeDebugClientException { |
| 146 | this.performRuntimeDebugTargetAttachDetach(debugTarget, true); |
no test coverage detected