(int tool)
| 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; |
no test coverage detected