Examples of GameNameToken


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

        else if( tokenName.equals( "RE" ) || tokenName.equals( "RESULT" ) )
            token = new ResultToken();
        else if( tokenName.equals( "GC" ) )
            token = new GameCommentToken();
        else if( tokenName.equals( "GN" ) || tokenName.equals( "GAMENAME" ) )
            token = new GameNameToken();
        else if( tokenName.equals( "ID" ) )
            token = new GameIDToken();
        else if( tokenName.equals( "CA" ) )
            //  token = new CharsetToken();   // where did this token class go?
            token = new TextToken();
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.