View Javadoc
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 java.io.File; 7 8 public interface CPDListener { 9 void addedFile(int fileCount, File file); 10 void comparisonCountUpdate(long comparisons); 11 }

This page was automatically generated by Maven