]> git.uio.no Git - ifi-stolz-refaktor.git/blame - case-study/refaktor-before/src/no/uio/ifi/refaktor/analyze/analyzers/Analyzer.java
Case Study: adding data and statistics
[ifi-stolz-refaktor.git] / case-study / refaktor-before / src / no / uio / ifi / refaktor / analyze / analyzers / Analyzer.java
CommitLineData
1b2798f6
EK
1package no.uio.ifi.refaktor.analyze.analyzers;
2
3import no.uio.ifi.refaktor.analyze.exceptions.RefaktorAnalyzerException;
4
5public interface Analyzer {
6
7 /**
8 * Run this analyzer.
9 *
10 * @throws RefaktorAnalyzerException runtime exception that is thrown if
11 * something extraordinary happens during analysis.
12 */
13 public void analyze() throws RefaktorAnalyzerException;
14
15}