Package | Description |
---|---|
com.jgoodies.binding.adapter |
Contains adapters that convert
ValueModel s
to Swing model interfaces. |
com.jgoodies.binding.binder |
Modifier and Type | Method and Description |
---|---|
static <E> void |
Bindings.bind(JComboBox comboBox,
SelectionInList<E> selectionInList)
Binds a non-editable JComboBox to the given SelectionInList using
the SelectionInList's ListModel as list data provider and the
SelectionInList's selection index holder for the combo box model's
selected item.
|
static <E> void |
Bindings.bind(JComboBox comboBox,
SelectionInList<E> selectionInList,
String nullText)
Binds a non-editable JComboBox to the given SelectionInList using
the SelectionInList's ListModel as list data provider and the
SelectionInList's selection index holder for the combo box model's
selected item.
|
static <E> void |
Bindings.bind(JList list,
SelectionInList<E> selectionInList)
Binds a JList to the given SelectionInList using the SelectionInList's
ListModel as list data provider and the SelectionInList's selection
index holder for the selection model.
|
static void |
Bindings.bind(JTable table,
SelectionInList selectionInList)
Sets the given SelectionInList as the table's row-data provider,
and binds the SelectionInList's selection index to the table's selection.
|
static <E> JComboBox |
BasicComponentFactory.createComboBox(SelectionInList<E> selectionInList)
Deprecated.
Creates and returns a non-editable JComboBox that is bound
to the given SelectionInList.
|
static <E> JComboBox |
BasicComponentFactory.createComboBox(SelectionInList<E> selectionInList,
ListCellRenderer cellRenderer)
Deprecated.
Creates and returns a non-editable JComboBox that is bound
to the given SelectionInList using the given cell renderer.
|
static <E> JList |
BasicComponentFactory.createList(SelectionInList<E> selectionInList)
Deprecated.
Creates and returns a JList for the given SelectionInList.
|
static <E> JList |
BasicComponentFactory.createList(SelectionInList<E> selectionInList,
ListCellRenderer cellRenderer)
Deprecated.
Creates and returns a JList for the given SelectionInList using
the specified optional ListCellRenderer to render cells.
|
static JTable |
BasicComponentFactory.createTable(SelectionInList selectionInList,
AbstractTableAdapter<?> tableAdapter)
Deprecated.
Creates and returns a table that turns the SelectionInList's row data
into a TableModel using the given adapter.
|
Constructor and Description |
---|
ComboBoxAdapter(SelectionInList<E> selectionInList)
Constructs a ComboBoxAdapter for the given SelectionInList.
|
Modifier and Type | Method and Description |
---|---|
protected SelectionInList |
SelectionInListBindingBuilderImpl.getSelectionInList() |
Modifier and Type | Method and Description |
---|---|
SelectionInListBindingBuilder |
ObjectBinderImpl.bind(SelectionInList<?> selectionInList) |
SelectionInListBindingBuilder |
ObjectBinder.bind(SelectionInList<?> selectionInList)
Creates and returns a binding builder that manages a SelectionInList
that can be bound to a list, table, or combo box.
|
Constructor and Description |
---|
SelectionInListBindingBuilderImpl(SelectionInList<?> selectionInList)
Creates a SelectionInListBindingBuilderImpl for the given selection in list.
|
SelectionInListBindingBuilderImpl(SelectionInList<?> selectionInList,
String propertyName)
Creates a SelectionInListBindingBuilderImpl for the given selection in list.
|
Copyright © 2002-2015 JGoodies Software GmbH. All Rights Reserved.