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

Method getBooleanArg

ij/src/main/java/ij/macro/Functions.java:619–625  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

617 }
618
619 boolean getBooleanArg() {
620 interp.getLeftParen();
621 double arg = interp.getBooleanExpression();
622 interp.checkBoolean(arg);
623 interp.getRightParen();
624 return arg==0?false:true;
625 }
626
627 final Variable getVariableArg() {
628 interp.getLeftParen();

Callers 7

doFunctionMethod · 0.95
doPlotMethod · 0.95
enableLivePlotMethod · 0.95
doOverlayMethod · 0.95
overlaySelectableMethod · 0.95
doRoiMethod · 0.95
doRoiManagerMethod · 0.95

Calls 4

getLeftParenMethod · 0.80
getBooleanExpressionMethod · 0.80
checkBooleanMethod · 0.80
getRightParenMethod · 0.80

Tested by

no test coverage detected