Package br.com.rodrigo.kuntzer.ee6demo.entity

Examples of br.com.rodrigo.kuntzer.ee6demo.entity.Estado


  public void listar(){
    FacesContext context = FacesContext.getCurrentInstance();
    if(!context.isPostback()){
      this.lista = clienteService.obterTodosClientes();
      this.entity = new Cliente();
      this.entity.setEstado(new Estado());
      this.itensComboTipoPessoa.clear();
      for(TipoCliente tipo:TipoCliente.values()){
        this.itensComboTipoPessoa.add(new SelectItem(tipo, tipo.getDescription()));
      }
    }
View Full Code Here

TOP

Related Classes of br.com.rodrigo.kuntzer.ee6demo.entity.Estado

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.