borland Packages Class Hierarchy internetbeans Package
java.lang.Object +----com.borland.internetbeans.IxComponent +----com.borland.internetbeans.AbstractIxDataWidget +----com.borland.internetbeans.AbstractIxControl +----com.borland.internetbeans.IxLink +----com.borland.internetbeans.IxSpan
Variables Properties Methods
Implements ColumnAware, DataSetAware, Renderable, Serializable, Cloneable
Adds data-awareness to the base WebExpress object. This includes direct support for DataExpress DataSets (both "simple" DataSets and those in DataModules), and generic data-awareness through the TupleModel
data model.
protected String columnNameName of column in
dataSet
to read/write, if any.
protected DataSet dataSetDataSet that contains column to read/write, if any.
protected int tupleOrdinalOrdinal for data model.
protected String valueValue of control, used when data-awareness is not active (or properly setup).
public String getColumnName() public void setColumnName(String columnName)Name of column in
dataSet
to read/write, if any.
public DataSet getDataSet() public void setDataSet(DataSet dataSet)DataSet that contains column to read/write, if any.
public int getTupleOrdinal() public void setTupleOrdinal(int newTupleOrdinal)Ordinal for data model.
public String getValue() public void setValue(String newValue)If no data model is assigned, the component maintains a string property, and provides read/write access. If there is a data model, read-only access is provided. For DataSets, this is the value from the named column.
protected IxComponent cloneForTupleModel(TupleModel tupleModel)Makes a shallow clone of the component, and tie it to the specified data model if the current (original) has a data model. If the original has no data model, then neither does the clone
tupleModel