()
| 374 | } |
| 375 | |
| 376 | public boolean iviewAvailable() { |
| 377 | try { |
| 378 | Runtime r = Runtime.getRuntime(); |
| 379 | Process p; |
| 380 | p = r.exec(iviewPath.getText() + " i_view32_test.jpg /convert=" |
| 381 | + surfex_.tmpDir + "i_view32_test.jpg"); |
| 382 | iviewPath.setBackground(Color.white); |
| 383 | return true; |
| 384 | } catch (Exception e1) { |
| 385 | // System.out.println(e1.toString()); |
| 386 | iviewPath.setBackground(Color.red); |
| 387 | return (false); |
| 388 | } |
| 389 | } |
| 390 | |
| 391 | public void askForSurf() { |
| 392 |
no outgoing calls
no test coverage detected