Package utn.frsf.gabinete.fw.generator

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

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

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

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.