-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLibro.java
More file actions
122 lines (105 loc) · 2.72 KB
/
Copy pathLibro.java
File metadata and controls
122 lines (105 loc) · 2.72 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
package devcode.module_08x01_App;
public class Libro implements Comparable<Libro>{
private Integer id;
private String nombre;
private Categoria categoria;
private Autor autor;
private Integer cantidad;
public Libro() {
super();
}
public Libro(Integer id, String nombre, Categoria categoria, Autor autor, Integer cantidad) {
super();
this.id = id;
this.nombre = nombre;
this.categoria = categoria;
this.autor = autor;
this.cantidad = cantidad;
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getNombre() {
return nombre;
}
public void setNombre(String nombre) {
this.nombre = nombre;
}
public Categoria getCategoria() {
return categoria;
}
public void setCategoria(Categoria categoria) {
this.categoria = categoria;
}
public Autor getAutor() {
return autor;
}
public void setAutor(Autor autor) {
this.autor = autor;
}
public Integer getCantidad() {
return cantidad;
}
public void setCantidad(Integer cantidad) {
this.cantidad = cantidad;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((autor == null) ? 0 : autor.hashCode());
result = prime * result + ((cantidad == null) ? 0 : cantidad.hashCode());
result = prime * result + ((categoria == null) ? 0 : categoria.hashCode());
result = prime * result + ((id == null) ? 0 : id.hashCode());
result = prime * result + ((nombre == null) ? 0 : nombre.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
Libro other = (Libro) obj;
if (autor == null) {
if (other.autor != null)
return false;
} else if (!autor.equals(other.autor))
return false;
if (cantidad == null) {
if (other.cantidad != null)
return false;
} else if (!cantidad.equals(other.cantidad))
return false;
if (categoria == null) {
if (other.categoria != null)
return false;
} else if (!categoria.equals(other.categoria))
return false;
if (id == null) {
if (other.id != null)
return false;
} else if (!id.equals(other.id))
return false;
if (nombre == null) {
if (other.nombre != null)
return false;
} else if (!nombre.equals(other.nombre))
return false;
return true;
}
@Override
public String toString() {
return "Libro [id=" + id + ", nombre=" + nombre + ", categoria=" + categoria + ", autor=" + autor
+ ", cantidad=" + cantidad + "]";
}
@Override
public int compareTo(Libro lib) {
return this.id - lib.getId() ;
}
}