Package net.traviangui.model

Examples of net.traviangui.model.Player


        for( int i=0 ; i<domNames.length ; i++)
        {
            int id = Integer.parseInt( Util.patternExtract( "\\?uid=(\\d+)", domUrlProfiles[i].toString(), 1)[0]);
   
            if( !ally.exists( id)) {
                Player p = new Player( id);
                p.setName( domNames[i].toString());
                p.setUrl( new URL( "http://s3.travian.net/" + domUrlProfiles[i].toString()));

                ally.add( p);
            }
        }
View Full Code Here

TOP

Related Classes of net.traviangui.model.Player

Copyright © 2018 www.massapicom. 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.