Package utn.frsf.gabinete.fw.generator

Source Code of utn.frsf.gabinete.fw.generator.InputTexto

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;
  }
}
TOP

Related Classes of utn.frsf.gabinete.fw.generator.InputTexto

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.