|
|
@ -6,15 +6,25 @@ public class Lol { |
|
|
|
private long id; |
|
|
|
private String nombre; |
|
|
|
private List<String> rol; |
|
|
|
private String dificultad; |
|
|
|
private String genero; |
|
|
|
|
|
|
|
public Lol() {} |
|
|
|
|
|
|
|
public Lol(long id, String nombre, List<String> rol, String plataformas) { |
|
|
|
public String getDificultad() { |
|
|
|
return dificultad; |
|
|
|
} |
|
|
|
|
|
|
|
public void setDificultad(String dificultad) { |
|
|
|
this.dificultad = dificultad; |
|
|
|
} |
|
|
|
|
|
|
|
public Lol(long id, String nombre, List<String> rol, String dificultad, String genero) { |
|
|
|
this.id = id; |
|
|
|
this.nombre = nombre; |
|
|
|
this.rol = rol; |
|
|
|
this.genero = plataformas; |
|
|
|
this.dificultad = dificultad; |
|
|
|
this.genero = genero; |
|
|
|
} |
|
|
|
|
|
|
|
public long getId() { |
|
|
@ -51,7 +61,7 @@ public class Lol { |
|
|
|
@Override |
|
|
|
public String toString() { |
|
|
|
return "Videogame [id=" + id + ", nombre=" + nombre + ", Rol=" |
|
|
|
+ rol.toString() + ", plataformas=" + genero + "]"; |
|
|
|
+ rol.toString() + ", plataformas=" + genero + ", dificultada= " + dificultad +"]"; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|