summaryrefslogtreecommitdiffstats
path: root/src/jrummikub/model/ITable.java
blob: 16fd4d3c3d482e5ab89f48575e6d4f5a3a3f5772 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package jrummikub.model;

public interface ITable extends IStoneTray<StoneSet> {

	/**
	 * Removes {@link Stone} from the Table
	 * 
	 * @param stone
	 *          stone to pick up
	 */
	public void pickUpStone(Stone stone);

	/** Tests the Table for rule conflicts by checking all the {@link StoneSet} */
	public boolean isValid();

	StoneSet findStoneSet(Stone stone);

}