Serialized Form
Package com.jgoodies.binding.adapter |
listModel
javax.swing.ListModel listModel
- Refers to the
ListModel
that holds the table row elements
and reports changes in the structure and content. The elements of
the list model can be requested using #getRow(int)
.
A typical subclass will use the elements to implement the
TableModel
method #getValueAt(int, int)
.
- See Also:
AbstractTableAdapter.getRow(int)
,
AbstractTableAdapter.getRowCount()
,
TableModel.getValueAt(int, int)
columnNames
java.lang.String[] columnNames
- Holds an optional array of column names that is used by the
default implementation of the
TableModel
methods
#getColumnCount()
and #getColumnName(int)
.
- See Also:
AbstractTableAdapter.getColumnCount()
,
AbstractTableAdapter.getColumnName(int)
listenerList
javax.swing.event.EventListenerList listenerList
- The listeners observing model changes.
subject
ValueModel subject
theExtent
int theExtent
min
int min
max
int max
isAdjusting
boolean isAdjusting
subject
ValueModel subject
- Refers to the underlying ValueModel that is used to read and write values.
defaultColor
java.awt.Color defaultColor
- An optional color that is returned as selected color
if the underlying ValueModel returns
null
.
listModel
javax.swing.ListModel listModel
- Holds the list of choices.
selectionHolder
ValueModel selectionHolder
- Refers to the ValueModel that holds the current selection.
In case this adapter is constructed for a SelectionInList
or SelectionInListModel, the selection holder will be updated
if the SIL or SILModel changes its selection holder.
selectionChangeHandler
java.beans.PropertyChangeListener selectionChangeHandler
- Holds the listener that handles selection changes.
subject
ValueModel subject
- Refers to the underlying ValueModel that stores the state.
choice
java.lang.Object choice
- Holds the object that is compared with the subject's value
to determine whether this adapter is selected or not.
subject
ValueModel subject
- Refers to the underlying ValueModel that is used to read and write values.
selectedValue
java.lang.Object selectedValue
- The value that represents the selected state.
deselectedValue
java.lang.Object deselectedValue
- The value that represents the deselected state.
Package com.jgoodies.binding.beans |
source
java.lang.Object source
- the object to be provided as the "source" for any generated events
checkIdentityDefault
boolean checkIdentityDefault
- The default setting for the identity check.
Can be overridden by the #firePropertyChange methods
that accept a
checkIdentity
parameter.
Copyright © 2002-2010 JGoodies Karsten Lentzsch. All Rights Reserved.