-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPosto.java
96 lines (76 loc) · 1.93 KB
/
Posto.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
/*
*
* made by:
* Confalonieri Riccardo
* riccardoconfalonieri98@gmail.com
* github.com/rconfa
*
*/
package carParks;
import java.util.UUID;
public class Posto {
private int numero;
private boolean occupato;
private boolean prenotato;
private String targa;
private String ticket;
private Automobile autoParcheggiata;
public Posto(int numero, boolean occupato) {
this.targa = "";
this.numero = numero;
this.setOccupato(occupato);
this.autoParcheggiata = null;
this.prenotato = false;
}
// Se un automoblista prenota, setto il posto a prenotato e ritorno il ticket.
// Non metto la targa, questa verrà inserita nel momento in cui parcheggerà.
public String prenota() {
UUID uuid1 = UUID.randomUUID();
String ticket = uuid1.toString();
this.ticket = ticket;
this.setPrenotato(true);
return ticket;
}
public void annullaPrenotazione() {
this.setPrenotato(false);
this.ticket = "";
}
public int getNumero() {
return numero;
}
public boolean isPrenotato() {
return prenotato;
}
public void setPrenotato(boolean prenotato) {
this.prenotato = prenotato;
}
public Automobile getAutoParcheggiata() {
return autoParcheggiata;
}
public void setAutoParcheggiata(Automobile autoParcheggiata) {
this.autoParcheggiata = autoParcheggiata;
}
public boolean isOccupato() {
return occupato;
}
public void setOccupato(boolean occupato) {
this.occupato = occupato;
}
public String getTicket() {
return ticket;
}
public void setTicket(String ticket) {
this.ticket = ticket;
}
public String getTarga() {
return targa;
}
public void setTarga(String targa) {
this.targa = targa;
}
@Override
public String toString() {
return "Numero: " + this.numero + " targa: " + this.targa + " isOccupato: " + this.isOccupato() + " ticket: "
+ this.ticket + " isPrenotato: " + this.isPrenotato();
}
}