]> git.uio.no Git - ifi-stolz-refaktor.git/blob - case-study/refaktor-after/src/no/uio/ifi/refaktor/analyze/checkers/Checker.java
Case Study: adding data and statistics
[ifi-stolz-refaktor.git] / case-study / refaktor-after / src / no / uio / ifi / refaktor / analyze / checkers / Checker.java
1 package no.uio.ifi.refaktor.analyze.checkers;
2
3 import no.uio.ifi.refaktor.analyze.exceptions.IllegalExpressionFoundException;
4 import no.uio.ifi.refaktor.analyze.exceptions.IllegalStatementFoundException;
5
6 interface Checker {
7         void check() throws IllegalStatementFoundException, IllegalExpressionFoundException;
8 }