FileDocCategorySizeDatePackage
TextareaTag.javaAPI DocExample2212Mon Jul 23 13:26:48 BST 2007org.apache.struts2.views.jsp.ui

TextareaTag

public class TextareaTag extends AbstractUITag
see
TextArea

Fields Summary
private static final long
serialVersionUID
protected String
cols
protected String
readonly
protected String
rows
protected String
wrap
Constructors Summary
Methods Summary
public org.apache.struts2.components.ComponentgetBean(com.opensymphony.xwork2.util.ValueStack stack, javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse res)


            
        return new TextArea(stack, req, res);
    
protected voidpopulateParams()

        super.populateParams();

        TextArea textArea = ((TextArea) component);
        textArea.setCols(cols);
        textArea.setReadonly(readonly);
        textArea.setRows(rows);
        textArea.setWrap(wrap);
    
public voidsetCols(java.lang.String cols)

        this.cols = cols;
    
public voidsetReadonly(java.lang.String readonly)

        this.readonly = readonly;
    
public voidsetRows(java.lang.String rows)

        this.rows = rows;
    
public voidsetWrap(java.lang.String wrap)

        this.wrap = wrap;