Home | History | Annotate | Download | only in build

Lines Matching defs:commandLine

59             String[] commandLine = new String[sourceFiles.size()+args];
60 commandLine[0] = "-classpath";
61 commandLine[1] = classPath;
62 commandLine[2] = "-d";
63 commandLine[3] = destPath;
64 commandLine[4] = "-source";
65 commandLine[5] = "1.7";
66 commandLine[6] = "-target";
67 commandLine[7] = "1.7";
72 System.arraycopy(files, 0, commandLine, args, files.length);
74 return Main.compile(commandLine, new PrintWriter(System.err)) == 0;