Advertisement
Guest User

Untitled

a guest
Sep 1st, 2015
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1.  
  2. public class Aluno extends Pessoa {
  3.  
  4. private int matricula;
  5.  
  6. public int getMatricula() {
  7. return matricula;
  8. }
  9.  
  10. public void setMatricula(int matricula) {
  11. this.matricula = matricula;
  12. }
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement