public class Elemento
{
	private Integer identificador;
	private String descripcion;
	private int numeroUnidades;

	public Elemento(Integer identificador, String descripcion, int numeroUnidades)
	{
		this.identificador = identificador;
		this.descripcion = descripcion;
		this.numeroUnidades = numeroUnidades;
	}
    
	public Integer getIdentificador() {
        return identificador;
	}
	
    public String getDescripcion() {
        return descripcion;
    }
    
	public int getNumeroUnidades() {
        return numeroUnidades;
	}
}

