JTable:如何从绑定到数据源的表中获取所选对象

我有JTable的“元素”属性绑定到对象列表,这是主表.还有详细信息表,该表的“ elements”属性绑定到主表中的selectedElement.我是在NetBeans GUI构建器的帮助下完成的.现在我尝试得到这样的东西:

SomeEntityType selectedObject= (SomeEntityType) masterTable.getSelectedElement ()

在源代码中,但JTable中没有此类属性,只有“ getSelectedRow”.那么,如何从JTable中将选定的对象绑定到源(对象列表)?
我读过类似的问题,但是只找到getValueAt(rowId,columnId)方法上的链接,但是在我的任务中,选择哪一列都没有关系,因为选择了整行.

解决方法:

不了解Netbeans,只知道它使用的是Beansbinding版本,因此以下内容肯定可以以某种方式应用

使用绑定框架的整个想法是,您从不直接与视图对话,而完全专注于模型(或bean):此类模型的某些属性绑定到视图的属性,并且您的代码仅侦听更改在bean的属性中. “ SelectedElement”是绑定(实际上是JTableAdapterProvider的)的人工属性,但是您不需要知道这件事:-),因此将您的model属性绑定到该属性-这是手动执行的代码段:

    // model/bean 
    public class AlbumManagerModel .. {
         // properties
         ObservableList<Album> albums;
         Album selectedAlbum;

         // vents the list of elements
         ObservableList<Album> getManagedAlbums() {
              return albums;
         }

         // getter/setter
         public Album getSelectedAlbum() {
              return selectedAlbum; 
         }

         public void setSelectedAlbum(Album album) {
            Album old = getSelectedAlbum();
            this.selectedAlbum = album;
            firePropertyChange("selectedAlbum", old, getSelectedAlbum());
         }


    }

    // bind the manager to a JTable

    BindingGroup context = new BindingGroup();
    // bind list selected element and elements to albumManagerModel
    JTableBinding tableBinding = SwingBindings.createJTableBinding(
            UpdateStrategy.READ,
            albumManagerModel.getManagedAlbums(), albumTable);
    context.addBinding(tableBinding);
    // bind selection 
    context.addBinding(Bindings.createAutoBinding(UpdateStrategy.READ_WRITE,
            albumManagerModel, BeanProperty.create("selectedAlbum"), 
            albumTable, BeanProperty.create("selectedElement_IGNORE_ADJUSTING")
    ));
    // bind columns 
    tableBinding.addColumnBinding(BeanProperty.create("artist"));
    ...
    context.bind();
上一篇:java-JTable中行选择的受控编辑


下一篇:JPanel面板