borland Packages  Class Hierarchy  internetbeans Package 

IxCheckBox class

java.lang.Object
   +----com.borland.internetbeans.IxComponent
           +----com.borland.internetbeans.AbstractIxDataWidget
                   +----com.borland.internetbeans.AbstractIxControl
                           +----com.borland.internetbeans.AbstractIxInput
                                   +----com.borland.internetbeans.AbstractIxBooleanInput
                                           +----com.borland.internetbeans.IxCheckBox

About the IxCheckBox class

Variables  Properties  Methods  

Implements ColumnAware, DataSetAware, Renderable, Serializable, Cloneable

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

Represents a checkbox.

XHTML: <input type="checkbox" />


IxCheckBox 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

IxCheckBox 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

IxCheckBox methods

Methods implemented in this class

Methods implemented in com.borland.internetbeans.AbstractIxBooleanInput

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


IxCheckBox variables

INPUT_TYPE

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

IxCheckBox properties

checked

 public boolean isChecked()
Returns whether the component is in its checked state.
Returns true if the underlying value is true (string or boolean) or 1 (integer).

features

 public int getFeatures()
Overrides IxComponent.getFeatures to indicate that checkboxes must be explicitly cleared if not posted to.

value

 public void setValue(String newValue)

Overrides: AbstractIxControl to write type-specific equivalent of a boolean value.

Parameters:

newValue
"false", "0", null and empty strings are considered false; everything else is considered true

IxCheckBox methods

getInputType()

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

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