-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHospede.java
More file actions
74 lines (62 loc) · 1.4 KB
/
Hospede.java
File metadata and controls
74 lines (62 loc) · 1.4 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
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package telacadastrohotel;
/**
* A classe responsável por definir o hóspede
* @author breno
*/
public class Hospede {
private long CPF;
private long RG;
private String nome;
private int idade;
private String endereço;
/**
*
* @param CPF
* @param RG
* @param nome
* @param idade
* @param endereço
*/
Hospede(long CPF, long RG, String nome, int idade, String endereço) {
this.CPF = CPF;
this.RG = RG;
this.nome = nome;
this.idade = idade;
this.endereço = endereço;
}
public void setCPF(long CPF) {
this.CPF = CPF;
}
public void setRG(long RG) {
this.RG = RG;
}
public void setNome(String nome) {
this.nome = nome;
}
public void setIdade(int idade) {
this.idade = idade;
}
public void setEndereço(String endereço) {
this.endereço = endereço;
}
public long getCPF() {
return CPF;
}
public long getRG() {
return RG;
}
public String getNome() {
return nome;
}
public int getIdade() {
return idade;
}
public String getEndereço() {
return endereço;
}
}