()
| 183 | return osType == KFREEBSD; |
| 184 | } |
| 185 | public static final boolean isX11() { |
| 186 | // TODO: check filesystem for /usr/X11 or some other X11-specific test |
| 187 | return !Platform.isWindows() && !Platform.isMac(); |
| 188 | } |
| 189 | public static final boolean hasRuntimeExec() { |
| 190 | if (isWindowsCE() && "J9".equals(System.getProperty("java.vm.name"))) |
| 191 | return false; |
no test coverage detected