-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMultimedia.java
More file actions
104 lines (90 loc) · 1.92 KB
/
Copy pathMultimedia.java
File metadata and controls
104 lines (90 loc) · 1.92 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
/*
* 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 Multimedia extends Item{
private String duracion;
private String peso;
private String productora;
private String director;
private String formato;
private TipoMultimedia tipo;
/**
* @return the duracion
*/
public String getDuracion() {
return duracion;
}
/**
* @param duracion the duracion to set
*/
public void setDuracion(String duracion) {
this.duracion = duracion;
}
/**
* @return the peso
*/
public String getPeso() {
return peso;
}
/**
* @param peso the peso to set
*/
public void setPeso(String peso) {
this.peso = peso;
}
/**
* @return the productora
*/
public String getProductora() {
return productora;
}
/**
* @param productora the productora to set
*/
public void setProductora(String productora) {
this.productora = productora;
}
/**
* @return the director
*/
public String getDirector() {
return director;
}
/**
* @param director the director to set
*/
public void setDirector(String director) {
this.director = director;
}
/**
* @return the formato
*/
public String getFormato() {
return formato;
}
/**
* @param formato the formato to set
*/
public void setFormato(String formato) {
this.formato = formato;
}
/**
* @return the tipo
*/
public TipoMultimedia getTipo() {
return tipo;
}
/**
* @param tipo the tipo to set
*/
public void setTipo(TipoMultimedia tipo) {
this.tipo = tipo;
}
}