MCPcopy Create free account
hub / github.com/OpenSourcePhysics/osp / isVista

Method isVista

src/org/opensourcephysics/display/OSPRuntime.java:1115–1120  ·  view source on GitHub ↗

Determines if OS is Vista @return true if Vista

()

Source from the content-addressed store, hash-verified

1113 * @return true if Vista
1114 */
1115 static public boolean isVista() {
1116 if (System.getProperty("os.name", "").toLowerCase().indexOf("vista") > -1) { //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
1117 return true;
1118 }
1119 return false;
1120 }
1121
1122 static public boolean hasJava3D() {
1123 return false;

Callers 1

runMethod · 0.95

Calls 1

getPropertyMethod · 0.65

Tested by

no test coverage detected