Package net.sourceforge.cruisecontrol

Examples of net.sourceforge.cruisecontrol.SourceControl


         */
        public List getModifications(Date lastBuild, Date now) {
            List retVal = new ArrayList();
           
            for (Iterator it = sourceControls.iterator(); it.hasNext(); ) {
                SourceControl sourceControl = (SourceControl) it.next();
                retVal.addAll(sourceControl.getModifications(lastBuild, now));
                // make sure we also pass the properties from the underlying sourcecontrol
                properties.putAll(sourceControl.getProperties());
            }
           
            return retVal;
        }
View Full Code Here

TOP

Related Classes of net.sourceforge.cruisecontrol.SourceControl

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.