borland Packages  Class Hierarchy  internetbeans Package 

IxTextField class

java.lang.Object
   +----com.borland.internetbeans.IxComponent
           +----com.borland.internetbeans.AbstractIxDataWidget
                   +----com.borland.internetbeans.AbstractIxControl
                           +----com.borland.internetbeans.AbstractIxInput
                                   +----com.borland.internetbeans.IxTextField
                                           +----com.borland.internetbeans.IxPassword

About the IxTextField class

Variables  Properties  Methods  

Implements ColumnAware, DataSetAware, Renderable, Serializable, Cloneable

Note: This package is a feature of JBuilder Professional and Enterprise.

Represents an input field.

XHTML: <input type="text" />


IxTextField variables

Variables implemented in this class

Variables implemented in com.borland.internetbeans.AbstractIxControl

Variables implemented in com.borland.internetbeans.AbstractIxDataWidget

Variables implemented in com.borland.internetbeans.AbstractIxInput

Variables implemented in com.borland.internetbeans.IxComponent

IxTextField properties

*Read-only properties **Write-only properties

Properties implemented in this class

Properties implemented in com.borland.internetbeans.AbstractIxControl

Properties implemented in com.borland.internetbeans.AbstractIxDataWidget

Properties implemented in com.borland.internetbeans.AbstractIxInput

Properties implemented in com.borland.internetbeans.IxComponent

Properties implemented in java.lang.Object

IxTextField methods

Methods implemented in this class

Methods implemented in com.borland.internetbeans.AbstractIxControl

Methods implemented in com.borland.internetbeans.AbstractIxDataWidget

Methods implemented in com.borland.internetbeans.AbstractIxInput

Methods implemented in com.borland.internetbeans.IxComponent

Methods implemented in java.lang.Object


IxTextField variables

INPUT_TYPE

  public static final String INPUT_TYPE = "text"
Value of TYPE attribute for this class of INPUT element.

IxTextField properties

maxLength

 public int getMaxLength()
 public void setMaxLength(int newMaxLength)
Maximum length of text to enter.

IxTextField methods

assembleTagAttributes(outWrap)

  protected void assembleTagAttributes(OutputWrapper outWrap)
Calls AbstractIxInput.assembleTagAttributes to generate the the TYPE, NAME, and VALUE attributes; then generates the MAXLENGTH attribute if it's greater than zero.

Parameters:

outWrap
The stream-like output into which the content goes

Overrides: com.borland.internetbeans.AbstractIxInput.assembleTagAttributes(outWrap)

getInputType()

  protected String getInputType()
Value of TYPE attribute for this class of INPUT element.

Overrides: com.borland.internetbeans.AbstractIxInput.getInputType()

mergeTag(java.lang.String, java.util.Map, boolean)

  public void mergeTag(String tagName, Map attributes, boolean empty)
Called by PageProducer; do not call directly. Reads and stores the value of the MAXLENGTH attribute, then calls super.

Parameters:

tagName
Name of the matching tag, e.g. INPUT, SELECT
attributes
Map of attribute values
empty
Whether the source tag was empty

Overrides: com.borland.internetbeans.AbstractIxInput.mergeTag(java.lang.String, java.util.Map, boolean)