Package indexing

Examples of indexing.Team


        Country france = new Country();
        france.name = "france";
        france.continent = "europe";

        // init Team
        Team barcelone = new Team();
        barcelone.name = "FC Barcelone";
        barcelone.country = espagne;
        barcelone.level = "Ligua";
        barcelone.dateCreate = new Date();
        loadPlayersBarcelone(barcelone);
        barcelone.index();


        Team madrid = new Team();
        madrid.name = "Real Madrid";
        madrid.country = espagne;
        madrid.level = "Ligua";
        madrid.dateCreate = new Date();
        loadPlayersMadrid(madrid);
        madrid.index();


        Team ol = new Team();
        ol.name = "Olympique Lyonnais";
        ol.country = france;
        ol.level = "Ligue 1";
        ol.dateCreate = new Date();
        ol.index();
    }
View Full Code Here

TOP

Related Classes of indexing.Team

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.