public interface ListBindingBuilder
Examples:
binder.bind(albumListModel, albumListSelectionModel) .to(albumTable); binder.bind(contactListModel, contactListSelectionModel).to(contactList);
void to(JList list)
Example:
binder.bind(contactListModel, contactListSelectionModel).to(contactList);
list - the component to set the data and selection model inNullPointerException - if table is nullvoid to(JTable table)
Example:
binder.bind(contactListModel, contactListSelectionModel).to(contactTable);
table - the component to set the data and selection model inNullPointerException - if table is nullIllegalArgumentException - if table's TableModel does not
implement the ListModelBindable interfaceCopyright © 2002-2015 JGoodies Software GmbH. All Rights Reserved.