001/** 002 * 003 * Copyright (c) 2014, the Railo Company Ltd. All rights reserved. 004 * 005 * This library is free software; you can redistribute it and/or 006 * modify it under the terms of the GNU Lesser General Public 007 * License as published by the Free Software Foundation; either 008 * version 2.1 of the License, or (at your option) any later version. 009 * 010 * This library is distributed in the hope that it will be useful, 011 * but WITHOUT ANY WARRANTY; without even the implied warranty of 012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 013 * Lesser General Public License for more details. 014 * 015 * You should have received a copy of the GNU Lesser General Public 016 * License along with this library. If not, see <http://www.gnu.org/licenses/>. 017 * 018 **/ 019package lucee.runtime.tag; 020 021import lucee.runtime.exp.DeprecatedException; 022import lucee.runtime.ext.tag.TagImpl; 023 024public final class TextInput extends TagImpl { 025 026 public TextInput() throws DeprecatedException { 027 throw new DeprecatedException("textinput",null); 028 } 029 030 public void setAlign(String align) {} 031 public void setBgcolor(String bgColor) {} 032 public void setBold(boolean bold) {} 033 public void setFont(String font) {} 034 public void setFontsize(double fontSize) {} 035 public void setHeight(double height) {} 036 public void setHspace(double space) {} 037 public void setItalic(boolean italic) {} 038 public void setMaxlength(double maxLength) {} 039 public void setMessage(String message) {} 040 public void setName(String name) {} 041 public void setNotsupported(String notSupported) {} 042 public void setOnerror(String onError) {} 043 public void setOnvalidate(String onValidate) {} 044 public void setRange(String range) {} 045 public void setRequired(boolean required) {} 046 public void setSize(double size) {} 047 public void setTextcolor(String textColor) {} 048 public void setValidate(boolean validate) {} 049 public void setValue(String value) {} 050 public void setVspace(double space) {} 051 public void setWidth(double width) {} 052}