| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| Presenter |
|
| 1.0;1 |
| 1 | package org.paneris.jammyjoes.mvp; | |
| 2 | ||
| 3 | public interface Presenter { | |
| 4 | ||
| 5 | public Selection createSelection(); | |
| 6 | ||
| 7 | public Command createCommand(); | |
| 8 | ||
| 9 | public void handleInteraction(Selection selection, Command command); | |
| 10 | ||
| 11 | } |