| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||||
| Functor |
|
| 0.0;0 |
| 1 | package yarfraw.mapping; |
|
| 2 | /** |
|
| 3 | * A functor class. |
|
| 4 | * |
|
| 5 | * @author jliang |
|
| 6 | */ |
|
| 7 | public interface Functor<ReturnType,ArgType, ExceptionType extends Exception> { |
|
| 8 | public ReturnType execute (ArgType arg) throws ExceptionType; |
|
| 9 | } |