我使用的是Jide 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");
}
});
答案 0 :(得分:1)
我在旧版本(2.10。*)中使用此方法就好了。但是看看3.1.1的软件仓库,它就在source中。
另外,你的问题也拼错了。我希望你在寻找getCheckBoxListSelectionModel
()。