Coverage Report - org.paneris.jammyjoes.mvp.Presenter
 
Classes in this File Line Coverage Branch Coverage Complexity
Presenter
N/A
N/A
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  
 }