-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathItem.java
More file actions
92 lines (77 loc) · 1.66 KB
/
Copy pathItem.java
File metadata and controls
92 lines (77 loc) · 1.66 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
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package proyectobiblioteca;
/**
*
* @author VictorHugo
*/
public abstract class Item {
private String ID;
private String Nombre;
private boolean fisicoDigital;
private String categoria;
private String sinopsis;
/**
* @return the ID
*/
public String getID() {
return ID;
}
/**
* @param ID the ID to set
*/
public void setID(String ID) {
this.ID = ID;
}
/**
* @return the Nombre
*/
public String getNombre() {
return Nombre;
}
/**
* @param Nombre the Nombre to set
*/
public void setNombre(String Nombre) {
this.Nombre = Nombre;
}
/**
* @return the fisicoDigital
*/
public boolean isFisicoDigital() {
return fisicoDigital;
}
/**
* @param fisicoDigital the fisicoDigital to set
*/
public void setFisicoDigital(boolean fisicoDigital) {
this.fisicoDigital = fisicoDigital;
}
/**
* @return the categoria
*/
public String getCategoria() {
return categoria;
}
/**
* @param categoria the categoria to set
*/
public void setCategoria(String categoria) {
this.categoria = categoria;
}
/**
* @return the sinopsis
*/
public String getSinopsis() {
return sinopsis;
}
/**
* @param sinopsis the sinopsis to set
*/
public void setSinopsis(String sinopsis) {
this.sinopsis = sinopsis;
}
}