borland Packages Class Hierarchy internetbeans Package
java.lang.Object +----com.borland.internetbeans.IxComponent +----com.borland.internetbeans.AbstractIxDataWidget +----com.borland.internetbeans.AbstractIxControl +----com.borland.internetbeans.IxTextArea
Variables Properties Methods
Implements ColumnAware, DataSetAware, Renderable, Serializable, Cloneable
Represents a text area.
XHTML: <textarea>
public static final String TAG_NAME = "textarea"Tag name for this type of element.
public int getCols() public void setCols(int newTextCols)The number of columns of text to display in the control. Use zero to let the user agent decide.
public int getRows() public void setRows(int newTextRows)The number of rows of text to display in the control. Use zero to let the user agent decide.
protected void assembleElementBody(OutputWrapper outWrap)Renders the value from the data model as the element body.
protected void assembleTagAttributes(OutputWrapper outWrap)Overrides
AbstractIxControl.assembleTagAttributes
and generates the NAME attribute (but not the VALUE, because that's in the element body), then the ROWS and COLS attributes.
outWrap
protected String[] getClosureTags()TEXTAREA elements require a matching end tag. As a precaution, other form control tag names and the FORM tag name itself are included in case the source markup is malformed.
protected String getElementType()Returns the tag name "select".
protected boolean isElementEmpty()TEXTAREA elements are never empty
public void mergeTag(String tagName, Map attributes, boolean empty)Called by
PageProducer
; do not call directly. Reads and stores the values of the ROWS and COLS attributes, then calls super
.
tagName
attributes
empty