1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
package jrummikub.view; import java.util.Collection; import jrummikub.model.Stone; public interface IView { /** * @return the table */ public ITable getTable(); /** * @return the playerPanel */ public IPlayerPanel getPlayerPanel(); public void setSelectedStones(Collection<Stone> stones); }