我使用的是积德OSS 3.1.1
在使用 CheckBoxList 时,我发现它缺少 getCheckBoxListSectionModel?它在文档中,但点运算符没有显示这样的事情。我想知道这是否仅在付费版本中可用??
然而,使用它getSelectionModel()
不会触发选定的事件。
Object[] options = {"This Element","Similar Elements"};
CheckBoxListWithSelectable checkboxlist = new CheckBoxListWithSelectable(options);
int result = JOptionPane.showConfirmDialog(rootPane, checkboxlist,
"Please Select Action(s) For This Element", JOptionPane.OK_CANCEL_OPTION);
checkboxlist.getSelectionModel().addListSelectionListener(new ListSelectionListener() {
@Override
public void valueChanged(ListSelectionEvent e) {
// TODO Auto-generated method stub
System.out.println("selected");
}
});