MCPcopy Create free account
hub / github.com/java-native-access/jna / hasRuntimeExec

Method hasRuntimeExec

src/com/sun/jna/Platform.java:189–193  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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;
192 return true;
193 }
194 public static final boolean is64Bit() {
195 String model = System.getProperty("sun.arch.data.model",
196 System.getProperty("com.ibm.vm.bitmode"));

Callers

nothing calls this directly

Calls 3

isWindowsCEMethod · 0.95
getPropertyMethod · 0.65
equalsMethod · 0.45

Tested by

no test coverage detected