KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > sourceforge > pmd > cpd > CPDListener


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 JavaDoc;
7
8 public interface CPDListener {
9
10     public static final int INIT = 0;
11     public static final int HASH = 1;
12     public static final int MATCH = 2;
13     public static final int GROUPING = 3;
14     public static final int DONE = 4;
15
16     void addedFile(int fileCount, File JavaDoc file);
17
18     void phaseUpdate(int phase);
19 }
20
Popular Tags