Examples of CleanTypeConfig


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
Copyright © 2018 www.massapi.com. 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.