Package hudson.plugins.perforce.config

Examples of hudson.plugins.perforce.config.CleanTypeConfig


           
        // Get data from workspace cleanup settings
        if (cleanWorkspace != null) {         
            setWipeRepoBeforeBuild(cleanWorkspace.isWipeRepoBeforeBuild());
           
            CleanTypeConfig cleanType = cleanWorkspace.getCleanType();
            if (cleanType != null) {
                setWipeBeforeBuild(cleanType.isWipe());
                setQuickCleanBeforeBuild(cleanType.isQuick());
                setRestoreChangedDeletedFiles(cleanType.isRestoreChangedDeletedFiles());
            }         
        } else {
            setWipeRepoBeforeBuild(false);
        }
       
View Full Code Here

TOP

Related Classes of hudson.plugins.perforce.config.CleanTypeConfig

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.