/* * Dependente.java * * Created on 13 de Setembro de 2006, 04:45 * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ package empresa.modelo; import java.util.Date; /** * * @author Eduardo */ public class Dependente { private Long id; private String nome; private Date dataNascimento; /** Creates a new instance of Dependente */ public Dependente() { } public String getNome() { return nome; } public void setNome(String nome) { this.nome = nome; } public Date getDataNascimento() { return dataNascimento; } public void setDataNascimento(Date dataNascimento) { this.dataNascimento = dataNascimento; } /** * Getter for property id. * @return Value of property id. */ public Long getId() { return this.id; } /** * Setter for property id. * @param id New value of property id. */ public void setId(Long id) { this.id = id; } }