Package indexing

Examples of indexing.Country


        initTeams();
    }

    private void initTeams() {
        // init Country
        Country espagne = new Country();
        espagne.name = "espagne";
        espagne.continent = "europe";

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

        // init Team
        Team barcelone = new Team();
View Full Code Here

TOP

Related Classes of indexing.Country

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.