|
1 |
| |
|
2 |
| |
|
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 |
| } |