Package net.sourceforge.cruisecontrol

Examples of net.sourceforge.cruisecontrol.Modification.fromElement()


                    .getChildren("modification")
                    .iterator();
            while (modificationIterator.hasNext()) {
                Element modification = (Element) modificationIterator.next();
                Modification mod = new Modification();
                mod.fromElement(
                    modification,
                    new SimpleDateFormat(DateFormatFactory.getFormat()));
                results.add(mod);
            }
        }
View Full Code Here


            Iterator modificationIterator = log.getChild("modifications").getChildren("modification")
                    .iterator();
            while (modificationIterator.hasNext()) {
                Element modification = (Element) modificationIterator.next();
                Modification mod = new Modification();
                mod.fromElement(modification, dateFormat);
                results.add(mod);
            }
        }
        return results;
    }
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.