Package com.mucommander.job

Examples of com.mucommander.job.MkdirJob


        // Job's FileSet needs to contain at least one file
        fileSet.add(destFile);

        ProgressDialog progressDialog = new ProgressDialog(mainFrame, getTitle());

        MkdirJob job;
        if(mkfileMode)
            job = new MkdirJob(progressDialog, mainFrame, fileSet, allocateSpaceCheckBox.isSelected()?allocateSpaceChooser.getValue():-1);
        else
            job = new MkdirJob(progressDialog, mainFrame, fileSet);

        progressDialog.start(job);
    }
View Full Code Here

TOP

Related Classes of com.mucommander.job.MkdirJob

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.