1
2
3
4
5
6
7
8
9
10
11
12
13
| package timeflow.data.analysis;
|
| import timeflow.data.db.*;
|
| public interface FieldAnalysis {
|
| public String getName();
| public boolean canHandleType(Class type);
| public DBAnalysis.InterestLevel perform(ActList acts, Field field);
| public String[] getResultDescription();
|
|
| }
|
|