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