Package railo.runtime.tag

Source Code of railo.runtime.tag.TextInput

package railo.runtime.tag;

import railo.runtime.exp.DeprecatedException;
import railo.runtime.ext.tag.TagImpl;

public final class TextInput extends TagImpl {

  public TextInput() throws DeprecatedException {
    throw new DeprecatedException("textinput",null);
  }
 
  public void setAlign(String align) {}
  public void setBgcolor(String bgColor) {}
  public void setBold(boolean bold) {}
  public void setFont(String font) {}
  public void setFontsize(double fontSize) {}
  public void setHeight(double height) {}
  public void setHspace(double space) {}
  public void setItalic(boolean italic) {}
  public void setMaxlength(double maxLength) {}
  public void setMessage(String message) {}
  public void setName(String name) {}
  public void setNotsupported(String notSupported) {}
  public void setOnerror(String onError) {}
  public void setOnvalidate(String onValidate) {}
  public void setRange(String range) {}
  public void setRequired(boolean required) {}
  public void setSize(double size) {}
  public void setTextcolor(String textColor) {}
  public void setValidate(boolean validate) {}
  public void setValue(String value) {}
  public void setVspace(double space) {}
  public void setWidth(double width) {} 
}
TOP

Related Classes of railo.runtime.tag.TextInput

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.