Exemplo n.º 1
0
 /**
  * Returns the java executable for this VM or <code>null</code> if cannot be found
  *
  * @return executable for this VM or <code>null</code> if none
  */
 File getJavaExecutable() {
   File installLocation = getInstallLocation();
   if (installLocation != null) {
     return StandardVMType.findJavaExecutable(installLocation);
   }
   return null;
 }