-
Notifications
You must be signed in to change notification settings - Fork 0
/
Programa 2
87 lines (49 loc) · 1.05 KB
/
Programa 2
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
public class Porta {
private boolean aberta;
private String cor;
private float dimensaoX;
private float dimensaoY;
private float dimensaoZ;
public float getDimensaoX() {
return dimensaoX;
}
public void setDimensaoX(float dimensaoX) {
this.dimensaoX = dimensaoX;
}
public void setDimensaoY(float dimensaoY) {
this.dimensaoY = dimensaoY;
}
public float getDimensaoY() {
return dimensaoY;
}
public float getDimensaoZ() {
return dimensaoZ;
}
public void setDimensaoZ(float dimensaoZ) {
this.dimensaoZ = dimensaoZ;
}
private String getCor() {
return cor;
}
public void abre() {
aberta = true;
}
public void fecha() {
aberta = false;
}
public void pinta (String novaCor) {
cor = novaCor;
}
public boolean estaAberta() {
return aberta;
}
public static void main (String [] args) {
Porta p1 = new Porta();
p1.pinta("Preto");
p1.setDimensaoX(5);
p1.setDimensaoY(5);
p1.setDimensaoZ(5);
p1.abre();
System.out.println(p1.estaAberta()+ " " + p1.getCor() + " " + p1.getDimensaoX()+ " " + p1.getDimensaoZ()+ " " + p1.getDimensaoY());
}
}