Home | History | Annotate | Download | only in ui

Lines Matching refs:outputDir

64 File outputDir;
191 this.outputDir = output;
307 this.outputDir = new File(dir);
308 if (!this.outputDir.exists() && !this.outputDir.mkdirs()) {
474 if (this.outputDir == null || this.configDescriptors == null || jvm == null) {
487 File outputFile = new File(this.outputDir, component + ".php");
493 File globalFile = new File(this.outputDir, "global.php");
537 final FingerPrint fingerprint = new FingerPrint(component, stream, this.outputDir);
550 // FingerPrint fingerprint = new FingerPrint(component, stream, this.outputDir);
621 File outputFile = new File(this.outputDir, "cvsummary.html");
857 // Utils.copyImages(new File(images.getPath()), this.outputDir);
864 Utils.copyImages(bundleFile.getFile("images", true), this.outputDir);
870 Utils.copyFile(bundleFile.getFile("images"+File.separator+, true), this.outputDir);
875 Utils.copyBundleFiles(bundle, "images", "*.gif", this.outputDir); // images
876 Utils.copyBundleFiles(bundle, "scripts", "*.js", this.outputDir); // java scripts
877 Utils.copyBundleFiles(bundle, "scripts", "*.css", this.outputDir); // styles
878 Utils.copyBundleFiles(bundle, "doc", "*.html", this.outputDir); // doc
879 Utils.copyBundleFiles(bundle, "doc/images", "*.png", this.outputDir); // images for doc
894 File subdir = new File(this.outputDir, file.getName());
905 Util.copyFile(file, new File(this.outputDir, file.getName()));
944 ScenarioData data = new ScenarioData(this.baselinePrefix, this.pointsOfInterest, this.currentBuildPrefixes, this.outputDir);
985 if (this.outputDir.getPath().indexOf(buildName) == -1) {
986 File dir = new File(this.outputDir, buildName);
988 this.outputDir = dir;