public class Element { private int id; private String descripcion; public Element(){ } public Element(int i, String d){ this.id=i; this.descripcion=d; } public String getDescripcion() { return descripcion; } public void setDescripcion(String descripcion) { this.descripcion = descripcion; } public int getId() { return id; } public void setId(int id) { this.id = id; } }