-
Notifications
You must be signed in to change notification settings - Fork 0
/
Imovel.java
74 lines (57 loc) · 1.62 KB
/
Imovel.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
package ruan;
import java.text.SimpleDateFormat;
import java.util.Date;
public class Imovel extends Patrimonio{
private String cidade;
private String estado;
private String endereco;
private String cep;
private String tipoImvl;
//Construtor Imóvel
public Imovel(float valor, float numPatrimonio, Date dataAquisicao, String cidade, String estado,String endereco, String cep, String tipoImvl){
super(valor, numPatrimonio, dataAquisicao);
this.cidade = cidade;
this.estado = estado;
this.endereco = endereco;
this.cep = cep;
this.tipoImvl = tipoImvl;
}
//Gets Imóvel
public String getCidade(){
return cidade;
}
public String getEstado(){
return estado;
}
public String getEndereco(){
return endereco;
}
public String getCep(){
return cep;
}
public String getTipoImvl(){
return tipoImvl;
}
//Sets Imóvel
public void setCidade(String cidade){
this.cidade = cidade;
}
public void setEstado(String estado){
this.estado = estado;
}
public void setEndereco(String endereco){
this.endereco = endereco;
}
public void setCep(String cep){
this.cep = cep;
}
public void setTipoImvl(String tipoImvl){
this.tipoImvl = tipoImvl;
}
//ToString Imóvel
public String toString() {
SimpleDateFormat formato = new SimpleDateFormat("dd/MM/yy");
return "Valor: " + valor + ", Número de Patrimônio: " + numPatrimonio + " Data de aquisição: " + formato.format(dataAquisicao)
+ " Cidade: " + cidade + " Estado: " + estado + " Endereço: " + endereco + " CEP: " + cep + " Tipo de Imóvel: " + tipoImvl;
}
}