01 /**
02 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
03 */
04 package net.sourceforge.pmd.cpd;
05
06 import java.util.Iterator;
07
08 /**
09 * @author Philippe T'Seyen
10 */
11 public interface Renderer {
12 String render(Iterator<Match> matches);
13 }
|