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

Method newNonBlockingDialog

ij/src/main/java/ij/gui/GUI.java:625–630  ·  view source on GitHub ↗

Returns a new NonBlockingGenericDialog with the given title, except when Java is running in headless mode, in which case a GenericDialog is be returned.

(String title)

Source from the content-addressed store, hash-verified

623 * a GenericDialog is be returned.
624 */
625 public static GenericDialog newNonBlockingDialog(String title) {
626 if (GraphicsEnvironment.isHeadless())
627 return new GenericDialog(title);
628 else
629 return new NonBlockingGenericDialog(title);
630 }
631
632 /** Returns a new NonBlockingGenericDialog with the given title
633 * if Prefs.nonBlockingFilterDialogs is 'true' and 'imp' is

Callers 15

rectToolOptionsMethod · 0.95
showDialogMethod · 0.95
showDialogMethod · 0.95
showDialogMethod · 0.95
arrowToolOptionsMethod · 0.95
showDialogMethod · 0.95
getValueMethod · 0.95
getBinaryValueMethod · 0.95
getGammaValueMethod · 0.95
getMacroMethod · 0.95
showDialogMethod · 0.95
showDialogMethod · 0.95

Calls 1

getWindowMethod · 0.45

Tested by

no test coverage detected