/**
* Constructor - sets up object with the specified
initial values.
*/
public ChessPosition (char aFile, int aRank)
{
// stub
}
/**
* Returns this ChessPosition object as a string.
*/
public String toString()
{
// stub
return "";
}
/**
* Returns the rank
*/
public int getRank()
{
// stub
return 1;
}
/**
* Returns the file
*/
public char getFile()
{
// stub
return 'a';
}
}