Package com.mucommander.job.ui

Examples of com.mucommander.job.ui.UserInputHelper


   
    protected Object waitForUserResponseObject(DialogResult dialog) {
        // Put this job in pause mode while waiting for user response
        setPaused(true);
       
        UserInputHelper jobUserInput = new UserInputHelper(this, dialog);
        Object userInput = jobUserInput.getUserInput();
       
        // Back to work
        setPaused(false);
        return userInput;
    }
View Full Code Here

TOP

Related Classes of com.mucommander.job.ui.UserInputHelper

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.