Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2011
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.26 KB | None | 0 0
  1. /*
  2.  * To change this template, choose Tools | Templates
  3.  * and open the template in the editor.
  4.  */
  5.  
  6. package br.com.webapplication.model;
  7.  
  8. /**
  9.  *
  10.  * @author meathook
  11.  */
  12. public class Aluno {
  13.  
  14.     private int idadeAluno;
  15.     private int idAluno;
  16.     private String enderecoAluno;
  17.     private String nomeAluno;
  18.  
  19.     public Aluno() {
  20.     }
  21.  
  22.     public Aluno(int idadeAluno, int idAluno, String enderecoAluno, String nomeAluno) {
  23.         this.idadeAluno = idadeAluno;
  24.         this.idAluno = idAluno;
  25.         this.enderecoAluno = enderecoAluno;
  26.         this.nomeAluno = nomeAluno;
  27.     }
  28.  
  29.     public String getEnderecoAluno() {
  30.         return enderecoAluno;
  31.     }
  32.  
  33.     public void setEnderecoAluno(String enderecoAluno) {
  34.         this.enderecoAluno = enderecoAluno;
  35.     }
  36.  
  37.     public int getIdAluno() {
  38.         return idAluno;
  39.     }
  40.  
  41.     public void setIdAluno(int idAluno) {
  42.         this.idAluno = idAluno;
  43.     }
  44.  
  45.     public int getIdadeAluno() {
  46.         return idadeAluno;
  47.     }
  48.  
  49.     public void setIdadeAluno(int idadeAluno) {
  50.         this.idadeAluno = idadeAluno;
  51.     }
  52.  
  53.     public String getNomeAluno() {
  54.         return nomeAluno;
  55.     }
  56.  
  57.     public void setNomeAluno(String nomeAluno) {
  58.         this.nomeAluno = nomeAluno;
  59.     }
  60.  
  61. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement