⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 htmlinputtextarea.java

📁 RESIN 3.2 最新源码
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
/* * Copyright (c) 1998-2008 Caucho Technology -- all rights reserved * * This file is part of Resin(R) Open Source * * Each copy or derived work must preserve the copyright notice and this * notice unmodified. * * Resin Open Source is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 * as published by the Free Software Foundation. * * Resin Open Source 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, or any warranty * of NON-INFRINGEMENT.  See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License * along with Resin Open Source; if not, write to the * *   Free Software Foundation, Inc. *   59 Temple Place, Suite 330 *   Boston, MA 02111-1307  USA * * @author Scott Ferguson */package javax.faces.component.html;import java.util.*;import javax.el.*;import javax.faces.component.*;import javax.faces.context.*;public class HtmlInputTextarea extends UIInput{  public static final String COMPONENT_TYPE = "javax.faces.HtmlInputTextarea";  private static final HashMap<String,PropEnum> _propMap    = new HashMap<String,PropEnum>();  private String _accesskey;  private ValueExpression _accesskeyExpr;    private Integer _cols;  private ValueExpression _colsExpr;    private String _dir;  private ValueExpression _dirExpr;    private Boolean _disabled;  private ValueExpression _disabledExpr;    private String _label;  private ValueExpression _labelExpr;    private String _lang;  private ValueExpression _langExpr;    private String _onblur;  private ValueExpression _onblurExpr;    private String _onchange;  private ValueExpression _onchangeExpr;    private String _onclick;  private ValueExpression _onclickExpr;    private String _ondblclick;  private ValueExpression _ondblclickExpr;    private String _onfocus;  private ValueExpression _onfocusExpr;  private String _onkeydown;  private ValueExpression _onkeydownExpr;  private String _onkeypress;  private ValueExpression _onkeypressExpr;  private String _onkeyup;  private ValueExpression _onkeyupExpr;  private String _onmousedown;  private ValueExpression _onmousedownExpr;  private String _onmousemove;  private ValueExpression _onmousemoveExpr;  private String _onmouseout;  private ValueExpression _onmouseoutExpr;  private String _onmouseover;  private ValueExpression _onmouseoverExpr;  private String _onmouseup;  private ValueExpression _onmouseupExpr;  private String _onselect;  private ValueExpression _onselectExpr;    private Boolean _readonly;  private ValueExpression _readonlyExpr;  private Integer _rows;  private ValueExpression _rowsExpr;  private String _style;  private ValueExpression _styleExpr;  private String _styleClass;  private ValueExpression _styleClassExpr;  private String _tabindex;  private ValueExpression _tabindexExpr;  private String _title;  private ValueExpression _titleExpr;  public HtmlInputTextarea()  {    setRendererType("javax.faces.Textarea");  }  //  // properties  //  public String getAccesskey()  {    if (_accesskey != null)      return _accesskey;    else if (_accesskeyExpr != null)      return Util.evalString(_accesskeyExpr);    else      return null;  }  public void setAccesskey(String value)  {    _accesskey = value;  }    public int getCols()  {    if (_cols != null)      return _cols;    else if (_colsExpr != null)      return Util.evalInt(_colsExpr);    else      return Integer.MIN_VALUE;  }  public void setCols(int value)  {    _cols = value;  }    public String getDir()  {    if (_dir != null)      return _dir;    else if (_dirExpr != null)      return Util.evalString(_dirExpr);    else      return null;  }  public void setDir(String value)  {    _dir = value;  }    public boolean isDisabled()  {    if (_disabled != null)      return _disabled;    else if (_disabledExpr != null)      return Util.evalBoolean(_disabledExpr);    else      return false;  }  public void setDisabled(boolean value)  {    _disabled = value;  }    public String getLabel()  {    if (_label != null)      return _label;    else if (_labelExpr != null)      return Util.evalString(_labelExpr);    else      return null;  }  public void setLabel(String value)  {    _label = value;  }    public String getLang()  {    if (_lang != null)      return _lang;    else if (_langExpr != null)      return Util.evalString(_langExpr);    else      return null;  }  public void setLang(String value)  {    _lang = value;  }    public String getOnblur()  {    if (_onblur != null)      return _onblur;    else if (_onblurExpr != null)      return Util.evalString(_onblurExpr);    else      return null;  }  public void setOnblur(String value)  {    _onblur = value;  }    public String getOnchange()  {    if (_onchange != null)      return _onchange;    else if (_onchangeExpr != null)      return Util.evalString(_onchangeExpr);    else      return null;  }  public void setOnchange(String value)  {    _onchange = value;  }    public String getOnclick()  {    if (_onclick != null)      return _onclick;    else if (_onclickExpr != null)      return Util.evalString(_onclickExpr);    else      return null;  }  public void setOnclick(String value)  {    _onclick = value;  }    public String getOndblclick()  {    if (_ondblclick != null)      return _ondblclick;    else if (_ondblclickExpr != null)      return Util.evalString(_ondblclickExpr);    else      return null;  }  public void setOndblclick(String value)  {    _ondblclick = value;  }    public String getOnfocus()  {    if (_onfocus != null)      return _onfocus;    else if (_onfocusExpr != null)      return Util.evalString(_onfocusExpr);    else      return null;  }  public void setOnfocus(String value)  {    _onfocus = value;  }    public String getOnkeydown()  {    if (_onkeydown != null)      return _onkeydown;    else if (_onkeydownExpr != null)      return Util.evalString(_onkeydownExpr);    else      return null;  }  public void setOnkeydown(String value)  {    _onkeydown = value;  }    public String getOnkeypress()  {    if (_onkeypress != null)      return _onkeypress;    else if (_onkeypressExpr != null)      return Util.evalString(_onkeypressExpr);    else      return null;  }  public void setOnkeypress(String value)  {    _onkeypress = value;  }    public String getOnkeyup()  {    if (_onkeyup != null)      return _onkeyup;    else if (_onkeyupExpr != null)      return Util.evalString(_onkeyupExpr);    else      return null;  }  public void setOnkeyup(String value)  {    _onkeyup = value;  }    public String getOnmousedown()  {    if (_onmousedown != null)      return _onmousedown;    else if (_onmousedownExpr != null)      return Util.evalString(_onmousedownExpr);    else      return null;  }  public void setOnmousedown(String value)  {    _onmousedown = value;  }    public String getOnmousemove()  {    if (_onmousemove != null)      return _onmousemove;    else if (_onmousemoveExpr != null)      return Util.evalString(_onmousemoveExpr);    else      return null;  }  public void setOnmousemove(String value)  {    _onmousemove = value;  }    public String getOnmouseout()  {    if (_onmouseout != null)      return _onmouseout;    else if (_onmouseoutExpr != null)      return Util.evalString(_onmouseoutExpr);    else      return null;  }  public void setOnmouseout(String value)  {    _onmouseout = value;  }    public String getOnmouseover()  {    if (_onmouseover != null)      return _onmouseover;    else if (_onmouseoverExpr != null)      return Util.evalString(_onmouseoverExpr);    else      return null;  }  public void setOnmouseover(String value)  {    _onmouseover = value;  }    public String getOnmouseup()  {    if (_onmouseup != null)      return _onmouseup;    else if (_onmouseupExpr != null)      return Util.evalString(_onmouseupExpr);    else      return null;  }  public void setOnmouseup(String value)  {    _onmouseup = value;  }    public String getOnselect()  {    if (_onselect != null)      return _onselect;    else if (_onselectExpr != null)      return Util.evalString(_onselectExpr);    else      return null;  }  public void setOnselect(String value)  {    _onselect = value;  }    public boolean isReadonly()  {    if (_readonly != null)      return _readonly;    else if (_readonlyExpr != null)      return Util.evalBoolean(_readonlyExpr);    else      return false;  }  public void setReadonly(boolean value)  {    _readonly = value;  }    public int getRows()  {    if (_rows != null)      return _rows;    else if (_rowsExpr != null)      return Util.evalInt(_rowsExpr);    else      return Integer.MIN_VALUE;  }  public void setRows(int value)  {    _rows = value;  }    public String getStyle()  {    if (_style != null)      return _style;    else if (_styleExpr != null)      return Util.evalString(_styleExpr);    else      return null;  }  public void setStyle(String value)  {    _style = value;  }    public String getStyleClass()  {    if (_styleClass != null)      return _styleClass;    else if (_styleClassExpr != null)      return Util.evalString(_styleClassExpr);    else      return null;  }  public void setStyleClass(String value)  {    _styleClass = value;  }    public String getTabindex()  {    if (_tabindex != null)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -