borland Packages Class Hierarchy dx.dataset Package
com.borland.dx.dataset.DataSetAware +----com.borland.dx.dataset.ColumnAware
Properties
Implemented by DBButtonDataBinder, DBColumnAwareSupport, DBLabelDataBinder, DBLabelSupport, DBListDataBinder, DBListModel, DBSliderDataBinder, DBTextDataBinder, DBTreeDataBinder, DBTreeNavBinder, JdbCheckBox, JdbComboBox, JdbEditorPane, JdbLabel, JdbList, JdbNavComboBox, JdbNavField, JdbNavList, JdbNavTree, JdbRadioButton, JdbSlider, JdbTextArea, JdbTextField, JdbTextPane, JdbToggleButton, JdbTree, AbstractIxBooleanInput, AbstractIxButton, AbstractIxControl, AbstractIxDataWidget, AbstractIxInput, AbstractIxList, IxCheckBox, IxComboBox, IxControl, IxHidden, IxImageButton, IxLink, IxListBox, IxPassword, IxPushButton, IxRadioButton, IxResetButton, IxSpan, IxSubmitButton, IxTextArea, IxTextField
The ColumnAware
interface is a way for a component to declare to JBuilder that it knows how to bind to a specific column in a specific
DataSet
. This allows the Inspector to provide additional help when
editing these properties. Note that the interface's methods defined here
are valid JavaBeans property getters/setters by design to simplify the component's
implementation.
The ColumnAware
interface extends the
DataSetAware
interface. If your control does not need to identify a specific column of
data (a grid control, for example), implement the DataSetAware
interface instead.
public String getColumnName() public void setColumnName(String columnName)Determines which
Column
is accessed by the control that implements this interface in the DataSet
.