Package br.estacio.contatos.shared

Examples of br.estacio.contatos.shared.Contato


    return e;
  }

  @Override
  public Contato toObject(Entity e) {
    Contato c = new Contato();
    c.setNome(getStringProperty(e, NOME_PROPERTY));
    c.setEmail(getStringProperty(e, EMAIL_PROPERTY));
    c.setTelefone(getStringProperty(e, TELEFONE_PROPERTY));
    c.setId(e.getKey().getId());
    return c;
  }
View Full Code Here


    contato.setTelefone(contatoView.getTelefone());
  }

  private void carregarContatoPorIdOuCriarNovo(Integer id) {
    if(id == null) {
      contato = new Contato();
    } else {
      throw new RuntimeException("Carregamento de contato exeistente não implementado");
    }
  }
View Full Code Here

TOP

Related Classes of br.estacio.contatos.shared.Contato

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.