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

Method isMacroTool

ij/src/main/java/ij/gui/Toolbar.java:1466–1468  ·  view source on GitHub ↗
(int tool)

Source from the content-addressed store, hash-verified

1464 }
1465
1466 boolean isMacroTool(int tool) {
1467 return tool>=CUSTOM1 && tool<getNumTools() && names[tool]!=null && (tools[tool] instanceof MacroToolRunner);
1468 }
1469
1470 boolean isPlugInTool(int tool) {
1471 return tool>=CUSTOM1 && tool<getNumTools() && tools[tool]!=null;

Callers 2

triggerPopupMenuMethod · 0.95
mousePressedMethod · 0.95

Calls 1

getNumToolsMethod · 0.95

Tested by

no test coverage detected