git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@41 72836036-5685-4462-b002-a69064685172
19 lines
No EOL
317 B
Java
19 lines
No EOL
317 B
Java
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);
|
|
} |