* Creates a new TransferFileJob.
*/
public TransferFileJob(ProgressDialog progressDialog, MainFrame mainFrame, FileSet files) {
super(progressDialog, mainFrame, files);
this.currentFileByteCounter = new ByteCounter();
this.currentFileSkippedByteCounter = new ByteCounter();
// Account the current file's byte counter in the total byte counter
this.totalByteCounter = new ByteCounter(currentFileByteCounter);
this.totalSkippedByteCounter = new ByteCounter(currentFileSkippedByteCounter);
}