Created at 27/09/12 10:57. @author Antoine Mischler
| 18 | * @author Antoine Mischler <antoine@dooapp.com> |
| 19 | */ |
| 20 | public interface Adapter<T, V> { |
| 21 | |
| 22 | public V adaptTo(T from) throws AdapterException; |
| 23 | |
| 24 | public T adaptFrom(V to) throws AdapterException; |
| 25 | |
| 26 | } |
no outgoing calls
no test coverage detected