Searched refs:toFile (Results 1 - 4 of 4) sorted by relevance

/glassfish-3.1.2/admin/util/src/main/java/com/sun/enterprise/admin/util/test/
H A DTokenReplacementTester.java61 public TokenReplacementTester(String tokensFileName, String fromFile, String toFile) { argument
64 replacer.replace(fromFile, toFile);
114 final String toFile = fromFile + ".out";
115 new TokenReplacementTester(tokensFile, fromFile, toFile);
/glassfish-3.1.2/webservices/jsr109-impl/src/main/java/org/glassfish/webservices/
H A DWebServicesDeployer.java299 File toFile = new File(wsdlDir.getAbsolutePath()+File.separator+fileName);
300 downloadFile(httpUrl, toFile);
425 public void downloadFile(URL httpUrl, File toFile) throws Exception { argument
429 if(!toFile.createNewFile()) {
431 "Unable to create new File", toFile.getAbsolutePath()));
435 os = new FileOutputStream(toFile, true);
/glassfish-3.1.2/core/logging/src/main/java/com/sun/enterprise/server/logging/commands/
H A DCollectLogFiles.java417 File toFile = new File(targetDir, logFile.getName());
425 to = new FileOutputStream(toFile);
445 if (!toFile.exists()) {
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/enterprise/util/io/
H A DFileUtils.java935 *@param toFile name for the renamed file
938 public static boolean renameFile(File fromFile, File toFile) { argument
941 RenameFileWork renameWork = new RenameFileWork(fromFile, toFile);
949 toFilePath = toFile.getAbsolutePath();

Completed in 20 milliseconds