-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLeitor.java
177 lines (138 loc) · 3.22 KB
/
Leitor.java
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
package bean;
public class Leitor {
private int RGM;
private String nomeAluno;
private String nascAluno;
private int CPF;
private String emailAluno;
private String endAluno;
private String munAluno;
private String ufAluno;
private int celAluno;
private String instrumento;
private String professor;
private String perAluno;
private String discAluno;
private String semAluno;
private String notaAluno;
private int falAluno;
public Leitor() {
}
public Leitor(int rGM, String nomeAluno, String nascAluno, int cPF, String emailAluno, String endAluno, String munAluno,
String ufAluno, int celAluno, String instrumento, String professor, String perAluno, String discAluno,
String semAluno, String notaAluno, int falAluno) {
super();
RGM = rGM;
this.nomeAluno = nomeAluno;
this.nascAluno = nascAluno;
CPF = cPF;
this.emailAluno = emailAluno;
this.endAluno = endAluno;
this.munAluno = munAluno;
this.ufAluno = ufAluno;
this.celAluno = celAluno;
this.instrumento = instrumento;
this.professor = professor;
this.perAluno = perAluno;
this.discAluno = discAluno;
this.semAluno = semAluno;
this.notaAluno = notaAluno;
this.falAluno = falAluno;
}
public int getRGM() {
return RGM;
}
public void setRGM(int rGM) {
RGM = rGM;
}
public String getNomeAluno() {
return nomeAluno;
}
public void setNomeAluno(String nomeAluno) {
this.nomeAluno = nomeAluno;
}
public String getNascAluno() {
return nascAluno;
}
public void setNascAluno(String nascAluno) {
this.nascAluno = nascAluno;
}
public int getCPF() {
return CPF;
}
public void setCPF(int cPF) {
CPF = cPF;
}
public String getEmailAluno() {
return emailAluno;
}
public void setEmailAluno(String emailAluno) {
this.emailAluno = emailAluno;
}
public String getEndAluno() {
return endAluno;
}
public void setEndAluno(String endAluno) {
this.endAluno = endAluno;
}
public String getMunAluno() {
return munAluno;
}
public void setMunAluno(String munAluno) {
this.munAluno = munAluno;
}
public String getUfAluno() {
return ufAluno;
}
public void setUfAluno(String ufAluno) {
this.ufAluno = ufAluno;
}
public int getCelAluno() {
return celAluno;
}
public void setCelAluno(int celAluno) {
this.celAluno = celAluno;
}
public String instrumento() {
return instrumento;
}
public void setinstrumento(String cursoAluno) {
this.instrumento = instrumento;
}
public String getprofessor() {
return professor;
}
public void setprofessor(String campusAluno) {
this.professor = professor;
}
public String getPerAluno() {
return perAluno;
}
public void setPerAluno(String perAluno) {
this.perAluno = perAluno;
}
public String getDiscAluno() {
return discAluno;
}
public void setDiscAluno(String discAluno) {
this.discAluno = discAluno;
}
public String getSemAluno() {
return semAluno;
}
public void setSemAluno(String semAluno) {
this.semAluno = semAluno;
}
public String getNotaAluno() {
return notaAluno;
}
public void setNotaAluno(String notaAluno) {
this.notaAluno = notaAluno;
}
public int getFalAluno() {
return falAluno;
}
public void setFalAluno(int falAluno) {
this.falAluno = falAluno;
}
}