-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAluno.java
More file actions
116 lines (91 loc) · 2.18 KB
/
Copy pathAluno.java
File metadata and controls
116 lines (91 loc) · 2.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
public class Aluno {
// Atributos
private int id;
private String nomeCompleto;
private int idade;
private String email;
private String endereco;
private String cep;
private String telefone;
private String usuario;
private String senha;
private String curso;
private String observacoes;
private Boolean ativo;
// Getter's & Setter's
public int getId() {
return this.id;
}
public void setId(int id) {
this.id = id;
}
public String getNomeCompleto() {
return this.nomeCompleto;
}
public void setNomeCompleto(String nomeCompleto) {
this.nomeCompleto = nomeCompleto;
}
public int getIdade() {
return this.idade;
}
public void setIdade(int idade) {
this.idade = idade;
}
public String getEmail() {
return this.email;
}
public void setEmail(String email) {
this.email = email;
}
public String getEndereco() {
return this.endereco;
}
public void setEndereco(String endereco) {
this.endereco = endereco;
}
public String getCep() {
return this.cep;
}
public void setCep(String cep) {
this.cep = cep;
}
public String getTelefone() {
return this.telefone;
}
public void setTelefone(String telefone) {
this.telefone = telefone;
}
public String getUsuario() {
return this.usuario;
}
public void setUsuario(String usuario) {
this.usuario = usuario;
}
public String getSenha() {
return this.senha;
}
public void setSenha(String senha) {
this.senha = senha;
}
public String getCurso() {
return this.curso;
}
public void setCurso(String curso) {
this.curso = curso;
}
public String getObservacoes() {
return this.observacoes;
}
public void setObservacoes(String observacoes) {
this.observacoes = observacoes;
}
public Boolean isAtivo() {
return this.ativo;
}
public Boolean getAtivo() {
return this.ativo;
}
public void setAtivo(Boolean ativo) {
this.ativo = ativo;
}
}