]> git.uio.no Git - ifi-stolz-refaktor.git/blob - case-study/refaktor-after/src/no/uio/ifi/refaktor/analyze/analyzers/Analyzer.java
Case Study: adding data and statistics
[ifi-stolz-refaktor.git] / case-study / refaktor-after / src / no / uio / ifi / refaktor / analyze / analyzers / Analyzer.java
1 package no.uio.ifi.refaktor.analyze.analyzers;
2
3 import no.uio.ifi.refaktor.analyze.exceptions.RefaktorAnalyzerException;
4
5 public 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 }