MCPcopy Create free account
hub / github.com/AstroImageJ/astroimagej / quit

Method quit

ij/src/main/java/ij/ImageJ.java:792–798  ·  view source on GitHub ↗

Called by ImageJ when the user selects Quit.

()

Source from the content-addressed store, hash-verified

790
791 /** Called by ImageJ when the user selects Quit. */
792 public void quit() {
793 quitMacro = IJ.macroRunning();
794 Thread thread = new Thread(this, "Quit");
795 thread.setPriority(Thread.NORM_PRIORITY);
796 thread.start();
797 IJ.wait(10);
798 }
799
800 /** Returns true if ImageJ is exiting. */
801 public boolean quitting() {

Callers 2

windowClosingMethod · 0.95
runMethod · 0.95

Calls 3

macroRunningMethod · 0.95
waitMethod · 0.95
startMethod · 0.45

Tested by

no test coverage detected