Determines if OS is Vista @return true if Vista
()
| 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; |