Searched refs:commandLine (Results 1 – 1 of 1) sorted by relevance
57 String[] commandLine = new String[sourceFiles.size()+args]; in build() local58 commandLine[0] = "-classpath"; in build()59 commandLine[1] = classPath; in build()60 commandLine[2] = "-d"; in build()61 commandLine[3] = destPath; in build()66 System.arraycopy(files, 0, commandLine, args, files.length); in build()69 return Main.compile(commandLine, new PrintWriter(System.err)) == 0; in build()