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

Method installMacros

ij/src/main/java/ij/Menus.java:694–701  ·  view source on GitHub ↗

Installs macros and scripts located in the plugins folder.

()

Source from the content-addressed store, hash-verified

692
693 /** Installs macros and scripts located in the plugins folder. */
694 void installMacros() {
695 if (macroFiles==null)
696 return;
697 for (int i=0; i<macroFiles.size(); i++) {
698 String name = (String)macroFiles.elementAt(i);
699 installMacro(name);
700 }
701 }
702
703 /** Installs a macro or script in the Plugins menu, or submenu, with
704 with underscores in the file name replaced by spaces. */

Callers 1

installPluginsMethod · 0.95

Calls 2

installMacroMethod · 0.95
sizeMethod · 0.45

Tested by

no test coverage detected