Package name.shamansir.mvp4glayoutdemo.shared.dao

Examples of name.shamansir.mvp4glayoutdemo.shared.dao.Company


   
    final Map<Integer, Company> companies = new HashMap<Integer, Company>();

    public CompanyServiceImpl() {
        int c1id = companies.size();
        Company companyOne = new Company(c1id);
        companyOne.title = "Google";
        companies.put(c1id, companyOne);
       
        int c2id = companies.size();
        Company companyTwo = new Company(c2id);
        companyTwo.title = "Apple";
        companies.put(c2id, companyTwo);
       
        int c3id = companies.size();
        Company companyThree = new Company(c3id);
        companyThree.title = "Microsoft";
        companies.put(c3id, companyThree);       
    }
View Full Code Here

TOP

Related Classes of name.shamansir.mvp4glayoutdemo.shared.dao.Company

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.