
/** This class is used for representing moves in object form.  It has
methods used to set and return the source and destination square in row/column
form.*/
public class Move
{
	/** Builds a move object using the given data. */
	public Move(int sourceRow, int sourceCol, int destRow, int destCol)
	{
	}
	
	/** Returns the source row. */
	public int getSourceRow()
	{
		return 0;
	}
	
	/** Returns the source column. */
	public int getSourceCol()
	{
		return 0;
	}
	
	/** Returns the destination row. */
	public int getDestRow()
	{
		return 0;
	}
	
	/** Returns the destination column. */
	public int getDestCol()
	{
		return 0;
	}
	
	/** Sets the source square. */
	public void setSource(int sourceRow, int sourceCol)
	{
	}
	
	/** Sets the destination square. */
	public void setDestination(int destRow,  int destCol)
	{
	}
}