-
Notifications
You must be signed in to change notification settings - Fork 0
/
Videojuego.java
94 lines (74 loc) · 1.9 KB
/
Videojuego.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
public class Videojuego implements Entregable{
private String title;
private String company;
private String genere;
private Integer hours;
private Boolean gived;
public Videojuego() {
this.setTitle("");
this.setCompany("");
this.setGenere("");
this.setHours(10);
this.setEntregado(Boolean.FALSE);
}
public Videojuego(String titulo, Integer horasEstimadas) {
this.setTitle(titulo);
this.setHours(horasEstimadas);
}
public Videojuego(String titulo, String compania, String genero, Integer horasEstimadas) {
this.setTitle(titulo);
this.setCompany(compania);
this.setGenere(genero);
this.setHours(horasEstimadas);
}
public String getTitle() {
return title;
}
public void setTitle(String titulo) {
this.title = titulo;
}
public String getCompany() {
return company;
}
public void setCompany(String company) {
this.company = company;
}
public String getGenere() {
return genere;
}
public void setGenere(String genero) {
this.genere = genero;
}
public Integer getHours() {
return hours;
}
public void setHours(Integer horasEstimadas) {
this.hours = horasEstimadas;
}
public Boolean getEntregado() {
return gived;
}
public void setEntregado(Boolean entregado) {
this.gived = entregado;
}
public void prestar() {
this.setEntregado(Boolean.TRUE);
}
public void devolver() {
this.setEntregado(Boolean.FALSE);
}
public Boolean isEntregado() {
return this.gived;
}
public Integer compareTo(Object a) {
Videojuego other = (Videojuego) a;
return this.getHours().compareTo(other.getHours());
}
public String conseguirEntregable(){
if(this.isEntregado()) return "Entregado.";
return "No entregado.";
}
public String toString() {
return "( Titulo: " + this.getTitle() + "\nHoras estimadas: " + this.getHours() + "\nEntregado: " + this.conseguirEntregable() + "\nGenero: " + this.getGenere() + "\nCompania: " + this.getCompany() + ")";
}
}