Advertisement
Guest User

Untitled

a guest
Jun 2nd, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. package com.company;
  2.  
  3. public class Aluno {
  4. public String nome;
  5. public String cpf;
  6. public String sexo;
  7.  
  8. public Aluno(String nome, String cpf, String sexo) {
  9. this.nome = nome;
  10. this.cpf = cpf;
  11. this.sexo = sexo;
  12. }
  13.  
  14. public String getNome() {
  15. return nome;
  16. }
  17.  
  18. public void setNome(String nome) {
  19. this.nome = nome;
  20. }
  21.  
  22. public String getCpf() {
  23. return cpf;
  24. }
  25.  
  26. public void setCpf(String cpf) {
  27. this.cpf = cpf;
  28. }
  29.  
  30. public String getSexo() {
  31. return sexo;
  32. }
  33.  
  34. public void setSexo(String sexo) {
  35. this.sexo = sexo;
  36. }
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement