*
* @return An SGFToken representing a piece of information about the game.
*/
@Override
protected SGFToken readToken( StreamTokenizer st ) throws IOException, SGFException {
SGFToken token = null;
String tokenName = st.sval.toUpperCase();
// moves are the most common token in an SGF file.
if( tokenName.equals( "P1" ) )
token = createPlayer1MoveToken();