summaryrefslogtreecommitdiffstats
path: root/src/jrummikub/model/StoneTray.java
blob: 6691a45fd8e65bb9ebf6fb7604c68ed1edca9c3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package jrummikub.model;

import java.util.Iterator;
import java.util.List;

import jrummikub.util.Pair;

/** A StoneTray is a collection of positioned objects (for example {@link Stone}s or {@link StoneSet}s.  */
public class StoneTray<E extends Sizeable> implements Iterable<Pair<E, Position>> {
	protected List<E> objects;
	protected List<Position> positions;
	
	/**
	 * Removes object from tray and returns it
	 * 
	 * @param position
	 *            position of the object that will be removed
	 */
	public E pickUp(Position position) {

	}
	

	/**
	 * Adds object to the tray
	 * 
	 * @param object
	 *            object to add to Hand
	 * @param position
	 *            {@link Position} to put the object
	 */
	public void drop(E object, Position position) {

	}


	public Position getPosition (E object) {

		
	}


	@Override
	public Iterator<Pair<E, Position>> iterator() {
		// TODO Auto-generated method stub
		return null;
	}
	
}