Returns the hashtable that associates commands with plugins.
()
| 1416 | |
| 1417 | /** Returns the hashtable that associates commands with plugins. */ |
| 1418 | public static Hashtable getCommands() { |
| 1419 | if (pluginsTable==null && !GraphicsEnvironment.isHeadless()) |
| 1420 | IJ.init(); |
| 1421 | return pluginsTable; |
| 1422 | } |
| 1423 | |
| 1424 | /** Returns the hashtable that associates shortcuts with commands. The keys |
| 1425 | in the hashtable are Integer keycodes, or keycode+200 for uppercase. */ |
no test coverage detected