Package br.jus.tjrn.report.test.dominio.dto

Examples of br.jus.tjrn.report.test.dominio.dto.RegiaoComCidadesDTO



    @Override
    public List<RegiaoComCidadesDTO> findQuantitativoCidadesPorRegiao () {
        List<RegiaoComCidadesDTO> result = new ArrayList<RegiaoComCidadesDTO>();
        result.add(new RegiaoComCidadesDTO(RegiaoBrasil.NORTE.toString(), new Random().nextInt(100)));
        result.add(new RegiaoComCidadesDTO(RegiaoBrasil.NORDESTE.toString(), new Random().nextInt(100)));
        result.add(new RegiaoComCidadesDTO(RegiaoBrasil.CENTRO_OESTE.toString(), new Random().nextInt(100)));
        result.add(new RegiaoComCidadesDTO(RegiaoBrasil.SUDESTE.toString(), new Random().nextInt(100)));
        result.add(new RegiaoComCidadesDTO(RegiaoBrasil.SUL.toString(), new Random().nextInt(100)));
        return result;
    }
View Full Code Here

TOP

Related Classes of br.jus.tjrn.report.test.dominio.dto.RegiaoComCidadesDTO

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.