/** * * Copyright (c) 2014, the Railo Company Ltd. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library. If not, see <http://www.gnu.org/licenses/>. * **/ package lucee.runtime.tag; import lucee.runtime.exp.DeprecatedException; import lucee.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) {} }