MCPcopy Create free account
hub / github.com/SoarGroup/Soar / close

Method close

Java/Debugger/src/edu/umich/soar/debugger/doc/Document.java:418–436  ·  view source on GitHub ↗

Shutdown. We generally only call this when we're about to terminate the debugger.

(boolean closingApp)

Source from the content-addressed store, hash-verified

416 *
417 ********************************************************************************************/
418 public void close(boolean closingApp)
419 {
420 // Close down any open kernel instances cleanly
421 if (isConnected())
422 {
423 if (isRemote())
424 {
425 this.remoteDisconnect();
426 }
427 else
428 {
429 // Stop the local kernel -- keeping windows open as we will
430 // shut them down later in code. That allows us to save other
431 // information (like window positions etc) in a controlled
432 // manner.
433 this.stopLocalKernel(closingApp, true);
434 }
435 }
436 }
437
438 protected void registerStandardKernelEvents()
439 {

Callers 5

stopLoggingMethod · 0.45
WriteToFileMethod · 0.45
WriteToStringMethod · 0.45
ReadFromFileMethod · 0.45
executeCommandMethod · 0.45

Calls 4

isConnectedMethod · 0.95
isRemoteMethod · 0.95
remoteDisconnectMethod · 0.95
stopLocalKernelMethod · 0.95

Tested by

no test coverage detected