1 package org.paneris.jammyjoes.mvp; 2 3 public interface Command { 4 5 public Object visit(Object visited); 6 7 public void lastInteraction(); 8 9 }