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 CSVRenderer implements Renderer { |
11 |
| |
12 |
0
| public String render(Iterator matches) {
|
13 |
0
| StringBuffer rpt = new StringBuffer();
|
14 |
0
| rpt.append("lines,tokens,occurrences" + PMD.EOL);
|
15 |
0
| while (matches.hasNext()) {
|
16 |
0
| Match match = (Match) matches.next();
|
17 |
0
| rpt.append(match.getLineCount() + "," + match.getTokenCount() + "," + match.getMarkCount() + ",");
|
18 |
0
| for (Iterator marks = match.iterator(); marks.hasNext();) {
|
19 |
0
| TokenEntry mark = (TokenEntry) marks.next();
|
20 |
0
| rpt.append(mark.getBeginLine() + "," + mark.getTokenSrcID());
|
21 |
0
| if (marks.hasNext()) {
|
22 |
0
| rpt.append(",");
|
23 |
| } |
24 |
| } |
25 |
0
| rpt.append(PMD.EOL);
|
26 |
| } |
27 |
0
| return rpt.toString();
|
28 |
| } |
29 |
| } |