Coverage Report - org.paneris.jammyjoes.mvp.AbstractPresenter
 
Classes in this File Line Coverage Branch Coverage Complexity
AbstractPresenter
25%
1/4
N/A
1
 
 1  
 package org.paneris.jammyjoes.mvp;
 2  
 
 3  
 
 4  1
 public abstract class AbstractPresenter implements Presenter {
 5  
 
 6  
   public void handleInteraction(Selection selection, Command command) {
 7  0
     selection.visitEach(command);
 8  0
     command.lastInteraction();
 9  0
   }
 10  
 
 11  
 }