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);
}