Clover coverage report - PMD - 3.7
Coverage timestamp: Wed May 31 2006 09:25:59 EDT
file stats: LOC: 26   Methods: 1
NCLOC: 19   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
SimpleRenderer.java 0% 0% 0% 0%
coverage
 1    /**
 2    * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
 3    */
 4    package net.sourceforge.pmd.cpd;
 5   
 6    import net.sourceforge.pmd.PMD;
 7   
 8    import java.util.Iterator;
 9   
 10    public class SimpleRenderer implements Renderer {
 11   
 12  0 public String render(Iterator matches) {
 13  0 StringBuffer rpt = new StringBuffer();
 14  0 while (matches.hasNext()) {
 15  0 Match match = (Match) matches.next();
 16  0 rpt.append("=====================================================================" + PMD.EOL);
 17  0 rpt.append("Found a " + match.getLineCount() + " line (" + match.getTokenCount() + " tokens) duplication in the following files: " + PMD.EOL);
 18  0 for (Iterator occurrences = match.iterator(); occurrences.hasNext();) {
 19  0 TokenEntry mark = (TokenEntry) occurrences.next();
 20  0 rpt.append("Starting at line " + mark.getBeginLine() + " of " + mark.getTokenSrcID() + PMD.EOL);
 21    }
 22  0 rpt.append(match.getSourceCodeSlice() + PMD.EOL);
 23    }
 24  0 return rpt.toString();
 25    }
 26    }