Newer
Older
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
}
public DataActividad(String n, String d, Date f, String c, int cos, int dur) {
this.nombre = n;
this.descripcion = d;
this.fechaAlta = f;
this.ciudad = c;
this.costo = cos;
this.duracion = dur;
}
private String nombre;
private String descripcion;
private Date fechaAlta;
private String ciudad;
private int costo;
private int duracion;
//Getters y Setters
public String getNombre() {
return this.nombre;
}
public String getDescripcion() {
return this.descripcion;
}
public Date getFechaAlta() {
return this.fechaAlta;
}
public String getCiudad() {
return this.ciudad;
}
public int getCosto() {
return this.costo;
}
public int getDuracion() {
return this.duracion;
}