Returns the default directory, if any, or null.
()
| 498 | |
| 499 | /** Returns the default directory, if any, or null. */ |
| 500 | public static String getDefaultDirectory() { |
| 501 | if (commandLineMacro) |
| 502 | return null; |
| 503 | else |
| 504 | return getString(DIR_IMAGE); |
| 505 | } |
| 506 | |
| 507 | /** Returns the file.separator system property. */ |
| 508 | public static String getFileSeparator() { |
no test coverage detected