(String jar)
| 895 | } |
| 896 | |
| 897 | void addJarErrorHeading(String jar) { |
| 898 | if (!isJarErrorHeading) { |
| 899 | if (!jarError.equals("")) |
| 900 | jarError += " \n"; |
| 901 | jarError += "Plugin configuration error: " + jar + "\n"; |
| 902 | isJarErrorHeading = true; |
| 903 | } |
| 904 | } |
| 905 | |
| 906 | /** Returns the specified ImageJ menu (e.g., "File>New") or null if it is not found. */ |
| 907 | public static Menu getImageJMenu(String menuPath) { |
no test coverage detected