whiplk

pessoa.java

Feb 5th, 2014
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.52 KB | None | 0 0
  1. public class Pessoa {
  2.     private long cpf;
  3.     private String nome;
  4.     private String data;
  5.    
  6.     public Pessoa(long cpf, String nome, String data) {
  7.         this.cpf = cpf;
  8.         this.nome = nome;
  9.         this.data = data;
  10.     }
  11.    
  12.     public Pessoa() {}
  13.    
  14.     public void setCpf(long cpf) { this.cpf = cpf; }
  15.     public void setNome(String nome) { this.nome = nome; }
  16.     public void setData(String data) { this.data = data; }
  17.    
  18.     public long getCpf() { return cpf; }
  19.     public String getNome() { return nome; }
  20.     public String getData() { return data; }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment