Advertisement
cesarnascimento

HashSet Pessoa

Nov 17th, 2017
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.42 KB | None | 0 0
  1.  
  2. public class Pessoa {
  3.  
  4.     private int id;
  5.     private String nome;
  6.     private String sexo;
  7.    
  8.     public int getId() {
  9.         return id;
  10.     }
  11.    
  12.     public void setId(int id) {
  13.         this.id = id;
  14.     }
  15.    
  16.     public String getNome() {
  17.         return nome;
  18.     }
  19.    
  20.     public void setNome(String nome) {
  21.         this.nome = nome;
  22.     }
  23.    
  24.     public String getSexo() {
  25.         return sexo;
  26.     }
  27.    
  28.     public void setSexo(String sexo) {
  29.         this.sexo = sexo;
  30.     }
  31.    
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement