Advertisement
Guest User

Untitled

a guest
Sep 24th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1.  
  2. public class Aluno {
  3. private String nome;
  4. private String matricula;
  5.  
  6.  
  7.  
  8. public String getNome() {
  9. return nome;
  10. }
  11.  
  12. public String getMatricula() {
  13. return matricula;
  14. }
  15.  
  16. public void setNome(String nome) {
  17. this.nome = nome;
  18. }
  19.  
  20. public void setMatricula(String matricula) {
  21. this.matricula = matricula;
  22. }
  23.  
  24.  
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement