package utn.frsf.gabinete.fw.generator;
import utn.frsf.gabinete.fw.generator.html.Html5ElementHidden;
import utn.frsf.gabinete.fw.generator.html.Html5FormElement;
public class InputHidden extends Input{
public InputHidden() {
this.tipoElemento = new Html5ElementHidden(this);
}
public InputHidden(String id) {
this();
this.id=id;
this.etiqueta = id;
}
public InputHidden (String id,Html5FormElement tipo){
this(id);
this.tipoElemento = tipo;
}
}