|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
CPDListener.java | - | - | - | - |
|
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 | ||
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 file); | |
17 | ||
18 | void phaseUpdate(int phase); | |
19 | } |
|