Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1.  
  2. package projetodaagenda;
  3.  
  4. public class Pessoas {
  5. String nome;
  6. String email;
  7. String tel;
  8. String categoria;
  9. String aniversario;
  10.  
  11. public Pessoas() {
  12. }
  13.  
  14. public void insertName(String nome) {
  15. this.nome = nome;
  16. }
  17.  
  18. public String getName() {
  19. return nome;
  20. }
  21.  
  22. public void insertEmail(String email) {
  23. this.email = email;
  24. }
  25.  
  26. public String getEmail() {
  27. return email;
  28. }
  29.  
  30. public void insertTel(String tel) {
  31. this.tel = tel;
  32. }
  33.  
  34. public String getTel() {
  35. return tel;
  36. }
  37.  
  38. public void insertCategory(String categoria) {
  39. this.categoria = categoria;
  40. }
  41.  
  42. public String getCategory() {
  43. return categoria;
  44. }
  45.  
  46. public void insertBirthDay(int dia, int mes, int ano) {
  47. aniversario = "dia/mes/ano";
  48. }
  49.  
  50. public String getBirthDay() {
  51. return aniversario;
  52. }
  53. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement