1 package org.paneris.jammyjoes.mvp; 2 3 4 public abstract class AbstractPresenter implements Presenter { 5 6 public void handleInteraction(Selection selection, Command command) { 7 selection.visitEach(command); 8 command.lastInteraction(); 9 } 10 11 }