Home | History | Annotate | Download | only in files

Lines Matching full:java

16 rem This script is called by the other batch files to find a suitable Java.exe

18 rem is left unset if Java.exe was not found.
24 rem Check we have a valid Java.exe in the path. The return code will
26 rem Java itself will return 1 if the argument is not understood.
27 set java_exe=java
36 rem Search for an alternative in %ProgramFiles%\Java\*\bin\java.exe
39 echo WARNING: Java not found in your path.
40 echo Checking it it's installed in %ProgramFiles%\Java instead.
44 for /D %%a in ( "%ProgramFiles%\Java\*" ) do call :TestJavaDir "%%a"
48 echo ERROR: No suitable Java found. In order to properly use the Android Developer
49 echo Tools, you need a suitable version of Java installed on your system. We
51 echo http://java.sun.com/javase/downloads/
64 set full_path=%~1\bin\java.exe
65 set short_path=%~s1\bin\java.exe
73 echo Java was found at %full_path%.