Package com.mucommander.job

Examples of com.mucommander.job.CalculateChecksumJob


                // Save the algorithm that was used for the next time this dialog is invoked
                lastUsedAlgorithm = algorithm;

                // Start processing files
                ProgressDialog progressDialog = new ProgressDialog(mainFrame, Translator.get("properties_dialog.calculating"));
                CalculateChecksumJob job = new CalculateChecksumJob(progressDialog, mainFrame, files, checksumFile, digest);
                progressDialog.start(job);
            }
            catch(IOException ex) {
                // Note: FileFactory.getTemporaryFile() should never throw an IOException
View Full Code Here

TOP

Related Classes of com.mucommander.job.CalculateChecksumJob

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.