Returns the number of open images.
()
| 143 | |
| 144 | /** Returns the number of open images. */ |
| 145 | public static int getImageCount() { |
| 146 | int count = imageList.size(); |
| 147 | count += Interpreter.getBatchModeImageCount(); |
| 148 | if (count==0 && getCurrentImage()!=null) |
| 149 | count = 1; |
| 150 | return count; |
| 151 | } |
| 152 | |
| 153 | /** Returns the front most window or null. */ |
| 154 | public static Window getActiveWindow() { |
no test coverage detected