Examples of GameTypeToken


Examples of com.barrybecker4.ca.dj.jigo.sgf.tokens.GameTypeToken

        // standard convention for JiGo's SGF API.
        //
        else if( tokenName.equals( "FF" ) )
            token = new FileFormatToken();
        else if( tokenName.equals( "GM" ) || tokenName.equals( "GAME" ) )
            token = new GameTypeToken();
        else if( tokenName.equals( "SZ2" ) || tokenName.equals( "SIZE" ) )
            token = new Size2Token();
        else if( tokenName.equals( "PLAYER1" ) )
            token = new Player1NameToken();
        else if( tokenName.equals( "PLAYER2" ) )
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.