Package br.com.granja.dominio

Examples of br.com.granja.dominio.Cidade


  protected void onBeforeSearch() {
    super.onBeforeSearch();
    getEntityToSearch().setAtivo(true);
   
      if(getEntityToSearch().getCidade() == null && getEstado() != null){
        getEntityToSearch().setCidade(new Cidade());
        getEntityToSearch().getCidade().setId(0);
        getEntityToSearch().getCidade().setEstado(getEstado());
      }
  }
View Full Code Here


    }
   
    public List<Cidade> cidadeComplete(String campoBusca) {
      List<Cidade> cidades = new ArrayList<Cidade>();
                     
    Cidade cidade = new Cidade();
    cidade.setId(null);
    cidade.setEstado(getEstado());
        cidade.setNome(campoBusca);
       
        cidades.addAll(getCidadeService().findByAttributes(cidade));
 
        return cidades;
    }
View Full Code Here

TOP

Related Classes of br.com.granja.dominio.Cidade

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.