Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个绑定到 ObservableList 的 JTable。T 是从我的网络服务生成的 bean。
所以我的问题是,如何从表实例中迭代绑定列表。getModel() 是“org.jdesktop.swingbinding.JTableBinding$BindingTableModel”
这个想法是:
((ObservableList)table.getModel()).foreach(...
一个 TableModel 是一个 TableModel 是一个 TableModel ,而不管扩展它的最终具体类是什么。与所有 TableModel 一样,您可以调用 、 和 的接口方法,getRowCount()以允许您遍历您的表并提取您的值。getColumnCount()getValueAt(...)
getRowCount()
getColumnCount()
getValueAt(...)
这是BindingTableModel 的 API的链接
它看起来实现了 TableModel,但没有扩展 AbstractTableModel 或 DefaultTableModel。